-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
51 lines (47 loc) · 1.17 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "sedkit"
authors = [
{name = "Joe Filippazzo", email = "[email protected]"},
{name= "Sherelyn Alejandro Merchan"}
]
maintainers = [
{name= "Kelle Cruz", email="[email protected]"}
]
description="Spectral energy distribution construction and analysis tools"
keywords=['astronomy']
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = ">=3.11,<=3.13"
dependencies = [
"astropy>=6.1.3",
"astroquery>=0.4.7",
"astropy>=6.1.3",
"astroquery>=0.4.7",
"bokeh>=3.2.1",
"dill>=0.3.4",
"dustmaps>=1.0.13",
"emcee>=3.1.6",
"numpy>=2.1",
"pandas>=2.2.2",
"scipy>=1.14.1",
"svo-filters>=0.4.4",
"setuptools>=64",
]
dynamic = ["version"]
readme = "README.md"
[tool.setuptools_scm]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.setuptools.packages.find]
exclude = ["source"]