forked from DUNE/ndlar_flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 903 Bytes
/
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
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='module0_flow',
version=version,
description='An h5flow-based analysis framework for Module0 data',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Peter Madigan',
author_email='[email protected]',
package_dir={'': 'src'},
python_requires='>=3.7',
install_requires=[
'h5py>=2.10',
'pytest',
'scipy',
'scikit-image',
'scikit-learn',
'h5flow>=0.2.0'
]
)