forked from cta-observatory/dl1-data-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 849 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(name='dl1_data_handler',
version='0.8.0',
description='dl1 HDF5 data writer + reader + processor',
url='http://github.com/cta-observatory/dl1-data-handler',
license='MIT',
packages=['dl1_data_handler'],
install_requires=[
'astropy',
'numpy>=1.15.0',
'scipy',
'tables>=3.4.4',
'pyhessio @ https://api.github.com/repos/cta-observatory/pyhessio/tarball/v2.1.1',
'ctapipe @ https://api.github.com/repos/cta-observatory/ctapipe/tarball/v0.6.2',
'eventio>=0.16.1',
'ctapipe-extra @ https://api.github.com/repos/cta-observatory/ctapipe-extra/tarball/v0.2.17',
'pytest-cov',
],
dependency_links=[],
zip_safe=True)