-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·46 lines (42 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
from pathlib import Path
from setuptools import find_packages, setup
long_description = Path("README.rst").read_text("utf-8")
try:
from lataq_reproduce import __author__, __email__
except ImportError: # Deps not yet installed
__author__ = __email__ = ""
setup(
name="lataq_reproduce",
version="0.0.1",
description="Semi-supervised model for architecture surgery on Single-cell data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/theislab/lataq_reproduce",
author=__author__,
author_email=__email__,
license="MIT",
packages=find_packages(),
zip_safe=False,
install_requires=[
l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()
],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
doc=[
"sphinx",
"sphinx_rtd_theme",
"sphinx_autodoc_typehints",
'typing_extensions; python_version < "3.8"',
],
)