forked from scverse/anndata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.41 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
import sys
if sys.version_info < (3, 6):
sys.exit('anndata requires Python >= 3.6')
from pathlib import Path
from setuptools import setup, find_packages
try:
from anndata import __author__, __email__
except ImportError: # deps not yet installed
__author__ = __email__ = ''
setup(
name='anndata',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Annotated Data.',
long_description=Path('README.rst').read_text('utf-8'),
url='http://github.com/theislab/anndata',
author=__author__,
author_email=__email__,
license='BSD-3-Clause',
install_requires=[
l.strip()
for l in Path('requirements.txt').read_text('utf-8').splitlines()
],
python_requires='>=3.6',
packages=find_packages(),
zip_safe=False,
classifiers=[
'Environment :: Console',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
],
)