forked from HEP-KBFI/ml-tau-en-reg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 772 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
setup(
name='enreg',
version='0.0.1',
description='Software for tau_h energy regression',
url='',
author=['Laurits Tani'],
author_email='[email protected]',
license='GPLv3',
packages=find_packages(),
package_data={
'enreg': [
'config/*',
'tests/*',
'scripts/*'
]
},
install_requires=[
'awkward',
'fastjet',
'hydra-core',
'matplotlib',
'mplhep',
'numba',
'pandas',
'pyarrow',
'scikit-learn',
'scikit-optimize',
'scipy',
'seaborn',
'setGPU',
'tensorboard',
'tqdm',
'uproot',
'vector',
],
)