-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (26 loc) · 1.06 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
import setuptools
with open('README.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
with open('VERSION', 'r') as fh:
version = fh.read().strip()
setuptools.setup(name='h5flow',
version=version,
description='A workflow framework centered around hdf5 file access',
long_description=long_description,
long_description_content_type='text/markdown',
author='Peter Madigan',
author_email='pmadigan@berkeley.edu',
package_dir={'': '.'},
packages=setuptools.find_packages(where='.'),
python_requires='>=3.7',
entry_points={'console_scripts': ['h5flow=h5flow:main']},
scripts=['scripts/run_h5flow.py'],
install_requires=[
'numpy',
'h5py>=2.10',
'PyYAML',
'pyyaml-include<2.0',
'tqdm',
'pytest',
]
)