-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
70 lines (65 loc) · 1.53 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
69
70
[build-system]
requires = ["setuptools >= 64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "eazy"
dynamic = ["version"]
description = "Pythonic photo-zs"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">=3.8"
authors = [
{ name = "G. Brammer", email = "gbrammer@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"astro-sedpy>=0.3",
"astropy",
"dust_extinction",
"h5py",
"matplotlib",
"numpy",
"peakutils",
"scipy<1.14",
"tqdm",
]
[project.optional-dependencies]
# dust = [
# "dust_attenuation @ git+https://github.com/karllark/dust_attenuation.git",
# ]
docs = [
"sphinx",
"sphinx-astropy",
"toml",
# "dust_attenuation @ git+https://github.com/karllark/dust_attenuation.git",
]
test = [
"flake8",
"pytest>=5.1",
"coverage",
]
vistool = [
"dash==2.5.1",
"jupyter-dash",
"Werkzeug==2.0.3"
]
[project.urls]
Documentation = "https://eazy-py.readthedocs.io/"
Homepage = "https://github.com/gbrammer/eazy-py"
Source = "https://github.com/gbrammer/eazy-py"
Tracker = "https://github.com/gbrammer/eazy-py/issues"
[tool.setuptools]
packages = ["eazy"]
package-data = {eazy = [
"data/*txt",
"data/alpha_lyr_stis_008.fits",
"data/emlines_info.dat",
"data/spectra_kc13_12_tweak.params",
"data/zphot.param.default"
]}
[tool.setuptools_scm]
version_file = "eazy/version.py"