-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
28 lines (25 loc) · 1.08 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
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='ndlar_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>=1.3.0',
'h5flow>=0.2.0',
'pylandau @ git+https://github.com/cuddandr/pylandau.git#egg=pylandau',
'adc64format @ git+https://github.com/larpix/[email protected]#egg=adc64format',
]
)