-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
57 lines (53 loc) · 1.79 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
import sys
if sys.version_info < (3,):
sys.exit('scanpy requires Python >= 3.5')
from setuptools import setup, find_packages
import versioneer
with open('requirements.txt', encoding='utf-8') as requirements:
requires = [l.strip() for l in requirements]
with open('README.rst', encoding='utf-8') as readme_f:
readme = readme_f.read()
setup(
name='pypairs',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A python scRNA-Seq classifier',
long_description=readme,
packages=find_packages(),
package_data = {
'': ['*.json', '*.gz'],
},
url='https://github.com/rfechtner/pypairs',
license='BSD',
author='Ron Fechtner',
author_email='ronfechtner@gmail.com',
python_requires='>=3.5',
install_requires=requires,
extras_require=dict(
plotting=['matplotlib', 'plotly'],
scanpy=['scanpy']
),
entry_points={
'console_scripts': [
'cyclone = pypairs.cli.cyclone.__main__:main',
'sandbag = pypairs.cli.sandbag.__main__:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
]
)