-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "astroblast"
version = "2.0.1"
authors = [
{name = "Tobias Kerscher", email = "[email protected]"}
]
description = "Synchtrotron peak estimator for blazars"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["blazar", "synchrotron"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Astronomy"
]
dependencies = [
"numpy>=1.20",
"onnxruntime",
"scipy",
"tqdm"
]
[project.optional-dependencies]
dev = [
"matplotlib",
"pytorch-lightning>=2.0",
"scikit-learn",
"seaborn",
"torch>=1.2.0",
]
[project.urls]
"Homepage" = "https://github.com/tkerscher/blast"
[project.scripts]
blast = "blast.blast:main"
[tool.setuptools]
packages = ["blast", "blast.models.freq", "blast.models.flux"]
[tool.setuptools.package-data]
"blast" = ["bins.txt", "bag_index.npy", "scaling.npz", "models/**/*.onnx"]