forked from HDFGroup/hsds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (71 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
74
75
76
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==2.1.0",
"aiohttp_cors",
"aiofiles",
"cryptography",
"numcodecs",
"numpy",
"psutil",
"pyjwt",
"pytz",
"pyyaml",
"requests-unixsocket",
"simplejson",
"aiohttp==3.8.1",
]
setup(
name="hsds",
version="0.7.1",
description="HDF REST API",
url="http://github.com/HDFGroup/hsds",
author="John Readey",
author_email="[email protected]",
license="Apache",
packages=["hsds", "hsds.util", "admin"],
install_requires=install_requires,
setup_requires=["setuptools"],
extras_require={"azure": ["azure-storage-blob"]},
zip_safe=False,
classifiers=classifiers,
include_package_data=True,
data_files=[
(
"admin",
[
"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",
]
},
)