-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (73 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
85 lines (73 loc) · 2.12 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools >= 65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "CTLearn"
description = "CTLearn is a package under active development to run deep learning models to analyze data from all major current and future arrays of imaging atmospheric Cherenkov telescopes (IACTs)."
readme = "README.rst"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Ari Brill"},
{name = "Bryan Kim"},
{name = "Tjark Miener"},
{name = "Daniel Nieto", email = "d.nieto@ucm.es"}
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.12"
dependencies = [
"dl1_data_handler>=0.14.8",
"astropy",
"numpy",
"pandas",
"pip",
"pyyaml",
"scikit-learn",
"numba",
"tensorflow>=2.16",
"tensorboard",
"pydot",
"setuptools",
"ctapipe[all]>=0.29",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["ctlearn"]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-rtd-theme",
]
# self reference allows all to be defined in terms of other extras
all = ["ctlearn[doc]"]
[project.urls]
repository = "https://github.com/ctlearn-project/ctlearn"
documentation = "https://ctlearn.readthedocs.io/en/latest/"
[project.scripts]
ctlearn-train-model = "ctlearn.tools.train_model:main"
ctlearn-predict-mono-model = "ctlearn.tools.predict_model:mono_tool"
ctlearn-predict-stereo-model = "ctlearn.tools.predict_model:stereo_tool"
ctlearn-predict-LST1= "ctlearn.tools.predict_LST1:main"
[tool.setuptools_scm]
version_file = "ctlearn/_version.py"
[tool.pytest.ini_options]
testpaths = ["ctlearn"]
markers = [
"verifies_usecase(usecase_id): mark test as verifying a specific use case",
]
norecursedirs = [
".git",
"notebooks",
"build",
"scripts",
"docs",
"images"
]