-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (37 loc) · 1.36 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
import glob
from setuptools import setup
try:
from testr.setup_helper import cmdclass
except ImportError:
cmdclass = {}
templates = glob.glob("templates/*")
data = glob.glob("data/*")
entry_points = {
"console_scripts": [
"dea_check = acis_thermal_check.apps.dea_check:main",
"dpa_check = acis_thermal_check.apps.dpa_check:main",
"dpamyt_check = acis_thermal_check.apps.dpamyt_check:main",
"psmc_check = acis_thermal_check.apps.psmc_check:main",
"acisfp_check = acis_thermal_check.apps.acisfp_check:main",
"fep1_mong_check = acis_thermal_check.apps.fep1_mong_check:main",
"fep1_actel_check = acis_thermal_check.apps.fep1_actel_check:main",
"bep_pcb_check = acis_thermal_check.apps.bep_pcb_check:main",
"cea_check = acis_thermal_check.apps.cea_check:main",
],
}
setup(
name="acis_thermal_check",
packages=["acis_thermal_check"],
use_scm_version=True,
setup_requires=["setuptools_scm", "setuptools_scm_git_archive"],
description="ACIS Thermal Model Library",
author="ACIS Ops",
author_email="[email protected]",
url="https://github.com/acisops/acis_thermal_check",
data_files=[("templates", templates), ("data", data)],
include_package_data=True,
entry_points=entry_points,
zip_safe=False,
tests_require=["pytest"],
cmdclass=cmdclass,
)