-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (44 loc) · 1.19 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
AngryTops
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open( 'AngryTops/__init__.py' ) as f:
version = f.readlines()[-1].split()[-1].strip("\"'")
setup(
name='AngryTops',
version=version,
packages=['AngryTops'],
url='https://github.com/rdisipio/AngryTops',
keywords=[
'top quark',
'kinematics',
'reconstruction'
],
license='LICENSE',
description='Probabilistic kinematics reconstruction of top quark decay chain',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Science/Research',
'Programming Language :: Python'
],
install_requires=requirements,
scripts=[
'scripts/check_nan.py',
'scripts/fit.py',
'scripts/histograms.py',
'scripts/launch_gpu_job.sh',
'scripts/root2csv.py',
'scripts/delphes2csv.py',
'scripts/setup_env.sh',
'scripts/plot_observables.py',
]
)