-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 924 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 924 Bytes
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
[build-system]
requires = ["setuptools>=69.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sigmas"
version = "0.1.2a"
description = "Simulation Interface for Generating METIS Astronomical Spectra"
readme = "README.md"
requires-python = ">=3.10, <3.13"
license = "GPL-3.0-or-later"
authors = [
{name = "Benjamin Eisele", email = "benjamin.eisele0101@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"flask",
"scopesim>=0.9.3",
"scopesim_templates",
"click",
"astrodonut",
"astropy>=6.0.0",
]
[project.scripts]
sigmas = "sigmas.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["sigmas", "sigmas.*"]
[tool.setuptools.package-data]
sigmas = [
"static/*",
"static/**/*",
"templates/*",
"templates/**/*"
]