-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1005 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import find_packages, setup
from setup_utils import SetupConfig
setup(
name="xfilios",
version=SetupConfig.get_version_from_package(),
author="Data Psycho",
author_email="mr.data.psycho@gmail.com",
url="https://github.com/DataPsycho/xfilios",
description="Docx and Excel File handler for Streamlit or Dash",
long_description=SetupConfig.read_metadata_from_readme(),
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=SetupConfig.get_install_requirements(),
license="MIT",
license_files=("LICENSE",),
keywords="FileIO, Docx, Excel, Streamlit, Dash",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
],
zip_safe=False,
include_package_data=True,
)