forked from sstcam/CHECLabPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 740 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (31 loc) · 740 Bytes
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
from setuptools import setup, find_packages
PACKAGENAME = "CHECLabPy"
DESCRIPTION = "Python scripts for reduction and analysis of CHEC lab data"
AUTHOR = "Jason J Watson"
AUTHOR_EMAIL = "jason.watson@physics.ox.ac.uk"
VERSION = "1.0.0"
setup(
name=PACKAGENAME,
packages=find_packages(),
version=VERSION,
description=DESCRIPTION,
license='BSD3',
install_requires=[
'astropy',
'scipy',
'numpy',
'matplotlib',
'tqdm',
'pandas>=0.21.0',
'iminuit',
'numba',
'PyYAML'
],
setup_requires=['pytest-runner', ],
tests_require=['pytest', ],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
package_data={
'': ['data/*'],
}
)