-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 771 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 771 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
34
35
from setuptools import setup, find_packages
PACKAGENAME = "TargetCalibSB"
DESCRIPTION = (
"Python package to explore calibration approaches for TARGET modules"
)
AUTHOR = "Jason J Watson"
AUTHOR_EMAIL = "jason.watson@physics.ox.ac.uk"
VERSION = "0.0.1"
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',
'h5py',
'PyYAML',
'packaging',
'CHECLabPy',
],
setup_requires=['pytest-runner', ],
tests_require=['pytest', ],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
)