-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
68 lines (59 loc) · 1.71 KB
/
pyproject.toml
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
[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 = "[email protected]"}
]
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"dl1_data_handler>=0.12.0",
"astropy",
"matplotlib",
"numpy",
"pandas",
"pip",
"pyyaml",
"scikit-learn",
"ctaplot",
"numba>=0.56.2,<0.57",
"tensorflow>=2.14,<2.16",
"pydot",
"pyirf",
"ctapipe",
]
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="ctlearn.run_model:main"
build_irf="ctlearn.build_irf:main"
[tool.setuptools_scm]
version_file = "ctlearn/_version.py"