-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·33 lines (28 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "astro-wcpy"
description = "A UI for wavelength calibration."
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Ruining ZHAO", email = "ruiningzhao@mail.bnu.edu.cn"},
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies"]
[project.scripts]
wavelength-calibrator = "wcpy.script:run"
[project.urls]
"Homepage" = "https://github.com/RuiningZHAO/wcpy"
"Tracker" = "https://github.com/RuiningZHAO/wcpy/issues"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools.dynamic]
version = {attr = "wcpy.__version__"}
dependencies = {file = "requirements.txt"}