forked from HDFGroup/h5pyd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (58 loc) · 1.88 KB
/
setup.py
File metadata and controls
61 lines (58 loc) · 1.88 KB
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
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:
# python setup.py sdist
# twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
# twine upload dist/h5pyd-x.y.z.tar.gz
#
# Tag the release in github!
#
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='h5pyd',
version='0.8.2',
description='h5py compatible client lib for HDF REST API',
long_description=long_description,
url='http://github.com/HDFGroup/h5pyd',
author='John Readey',
author_email='jreadey@hdfgrouup.org',
license='BSD',
packages=['h5pyd', 'h5pyd._hl', 'h5pyd._apps'],
install_requires=[
'numpy >= 1.17.3',
'requests',
'pytz',
'pyjwt',
'msrestazure',
'cryptography',
'google-api-python-client',
'google-auth-oauthlib',
'google-auth',
'adal'],
setup_requires=['pkgconfig'],
zip_safe=False,
entry_points={'console_scripts':
['hsinfo = h5pyd._apps.hsinfo:main',
'hsls = h5pyd._apps.hsls:main',
'hstouch = h5pyd._apps.hstouch:main',
'hsacl = h5pyd._apps.hsacl:main',
'hsdel = h5pyd._apps.hsdel:main',
'hsrm = h5pyd._apps.hsdel:main',
'hsget = h5pyd._apps.hsget:main',
'hsload = h5pyd._apps.hsload:main',
'hsconfigure = h5pyd._apps.hsconfigure:main',
'hscopy = h5pyd._apps.hscopy:main',
'hscp = h5pyd._apps.hscopy:main',
'hsmv = h5pyd._apps.hsmv:main',
'hsdiff = h5pyd._apps.hsdiff:main'
]
},
)