-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sagan"
version = "0.1.0"
description = "Spectral Analysis of Galaxy and Active galactic Nuclei"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{name = "SAGAN Developers"}
]
keywords = ["astronomy", "spectroscopy", "AGN", "galaxies", "spectral fitting"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy>=1.20",
"scipy>=1.7",
"matplotlib>=3.4",
"astropy>=5.0",
"pandas>=1.3",
"emcee>=3.0",
"dynesty>=1.2",
"corner>=2.2",
"extinction>=0.4",
"PyAstronomy>=0.18",
"spectres>=2.0",
"multiprocess>=0.70",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"jupyter>=1.0",
"ipython>=8.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/sagan"
Documentation = "https://github.com/yourusername/sagan"
Repository = "https://github.com/yourusername/sagan"
[tool.setuptools]
packages = ["sagan"]
[tool.setuptools.package-data]
sagan = ["data/*"]