-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.22 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.22 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
import setuptools
from version import version as this_version
this_directory = os.path.abspath(os.path.dirname(__file__))
version_path = os.path.join(this_directory, 'SplatStats', '_version.py')
with open(version_path, 'wt') as fversion:
fversion.write('__version__ = "'+this_version+'"')
REQUIRED_PACKAGES=[
'dill', 'termcolor', 'colorutils', 'tqdm',
'numpy', 'scipy', 'pandas', 'scikit-learn',
'DateTimeRange',
'matplotlib', 'pywaffle', 'squarify', 'seaborn'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="SplatStats",
install_requires=REQUIRED_PACKAGES,
version=this_version,
author="chipdelmal",
scripts=[],
author_email="chipdelmal@gmail.com",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Chipdelmal/SplatStats",
packages=setuptools.find_packages(),
extras_require={
'dev': ['twine', 'wheel', 'sphinx', 'sphinx-press-theme']
},
python_requires='>=3.10',
license='GPLv3',
classifiers=[
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent"
]
)