forked from HDFGroup/hsds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (60 loc) · 1.72 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
60
61
62
63
64
from setuptools import setup
# run:
# setup.py install
# or (if you'll be modifying the package):
# setup.py develop
# To use a consistent encoding
# To upload to PyPI:
# twine upload dist/*
#
# Tag the release in github!
#
classifiers = [
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Scientific/Engineering',
]
install_requires = [
'aiobotocore',
'aiohttp_cors',
'aiofiles',
'cryptography',
'numcodecs',
'numpy',
'psutil',
'pyjwt',
'pytz',
'pyyaml',
'requests-unixsocket',
'simplejson',
'aiohttp>=3.7.4'
]
setup(name='hsds',
version='0.7.0b11',
description='HDF REST API',
url='http://github.com/HDFGroup/hsds',
author='John Readey',
author_email='[email protected]',
license='Apache',
packages=['hsds', 'hsds.util'],
install_requires=install_requires,
setup_requires=['setuptools'],
extras_require={'azure': ['azure', 'azure-storage-blob']},
zip_safe=False,
classifiers=classifiers,
data_files=[('config', ['admin/config/config.yml',])],
entry_points={'console_scripts': [
'hsds = hsds.app:main',
'hsds-datanode = hsds.datanode:main',
'hsds-servicenode = hsds.servicenode:main',
'hsds-headnode = hsds.headnode:main',
'hsds-rangeget = hsds.rangeget_proxy:main',
'hsds-node = hsds.node_runner:main'
]}
)