-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·56 lines (51 loc) · 1.92 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
import sys
if set(sys.argv).isdisjoint({'sdist', 'bdist_wheel', '--name', '--version'}):
sys.exit('\nThis repository has been deprecated. For information about '
'accessing Human Cell Atlas data please refer to the '
'`Data Browser quick start guide. '
'https://data.humancellatlas.org/guides/quick-start-guide`\n')
install_requires = [line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), "requirements.txt"))]
setup(
name="hca",
version='8.0.0',
url='https://github.com/HumanCellAtlas/dcp-cli',
license='Apache Software License',
author='Human Cell Atlas contributors',
author_email='[email protected]',
description='Human Cell Atlas Data Storage System Command Line Interface',
long_description=open('README.rst').read(),
install_requires=install_requires,
extras_require={
':python_version < "3.5"': [
'typing >= 3.6.2, < 4',
'scandir >= 1.9.0, < 2'
],
},
packages=find_packages(exclude=['test']),
entry_points={
'console_scripts': [
'hca=hca.cli:main'
],
},
platforms=['MacOS X', 'Posix'],
package_data={'hcacli': ['*.json']},
zip_safe=False,
include_package_data=True,
test_suite='test',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)