forked from sstcam/sstcam-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 871 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
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
PACKAGENAME = "sstcam_simulation"
DESCRIPTION = "SST camera low-level simulation package"
AUTHOR = "Jason J Watson"
AUTHOR_EMAIL = "[email protected]"
VERSION = "2.2.0"
setup(
name=PACKAGENAME,
packages=find_packages(),
version=VERSION,
description=DESCRIPTION,
license='BSD3',
install_requires=[
'astropy',
'scipy',
'numpy',
'pandas',
'tables',
'matplotlib',
'tqdm',
'numba',
'h5py',
'PyYAML',
'requests',
'eventio>=1.4.1',
'ctapipe~=0.9.0',
'CHECLabPy @ git+https://github.com/sstcam/CHECLabPy@master',
],
setup_requires=['pytest-runner', ],
tests_require=['pytest', ],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
package_data={
'': ['data/*'],
},
)