forked from ARCControlTower/aCT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (53 loc) · 2.02 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
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
setup(
name='aCT',
version='0.1',
description='ARC Control Tower',
url='http://github.com/ARCControlTower/aCT',
python_requires='>=3.6',
author='aCT team',
author_email='[email protected]',
license='Apache 2.0',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'mysql-connector-python', # connection to MySQL database
'htcondor', # bindings to use HTCondor to submit jobs
'requests', # for APF mon calls
'prometheus_client', # Prometheus monitoring
'selinux', # SELinux context handling
'psutil', # Reports of process kills
'tabulate', # Pretty tables
'flask',
'gunicorn',
'sqlalchemy',
'pyjwt',
'cryptography',
'pyyaml',
],
entry_points={
'console_scripts': [
'actbootstrap = act.common.aCTBootstrap:main',
'actmain = act.common.aCTMain:main',
'actreport = act.common.aCTReport:main',
'actcriticalmonitor = act.common.aCTCriticalMonitor:main',
'actheartbeatwatchdog = act.atlas.aCTHeartbeatWatchdog:main',
'actldmxadmin = act.ldmx.aCTLDMXAdmin:main',
'actldmx = act.ldmx.aCTLDMXUser:main',
'actbulksub = act.client.actbulksub:main',
'actcat = act.client.actcat:main',
'actclean = act.client.actclean:main',
'actfetch = act.client.actfetch:main',
'actget = act.client.actget:main',
'actkill = act.client.actkill:main',
'actproxy = act.client.actproxy:main',
'actresub = act.client.actresub:main',
'actstat = act.client.actstat:main',
'actsub = act.client.actsub:main'
]
},
data_files=[
('etc/act', ['doc/aCTConfigARC.xml.template',
'doc/aCTConfigATLAS.xml.template'])
]
)