forked from scvae/scvae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·59 lines (52 loc) · 1.42 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
import setuptools
import scvae
NAME = scvae.__title__
DESCRIPTION = scvae.__description__
URL = scvae.__url__
AUTHOR = scvae.__author__
EMAIL = scvae.__email__
VERSION = scvae.__version__
LICENSE = scvae.__license__
REQUIRED_PYTHON_VERSION = ">=3.5.0"
REQUIRED_PACKAGES = [
"importlib_resources >= 1.0",
"loompy >= 2.0",
"matplotlib >= 2.0",
"numpy >= 1.16",
"pandas >= 0.24",
"pillow >= 5.4",
"scikit-learn >= 0.20",
"scipy >= 1.2",
"seaborn >= 0.9",
"tables >= 3.5",
"tensorflow >= 1.13",
"tensorflow-probability >= 0.6"
]
with open("README.md", "r") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.md", "r") as changelog_file:
changelog = changelog_file.read()
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description="\n\n".join([readme, changelog]),
long_description_content_type="text/markdown",
url=URL,
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["scvae=scvae.__main__:main"],
},
python_requires=REQUIRED_PYTHON_VERSION,
install_requires=REQUIRED_PACKAGES,
license=LICENSE,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
)