-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 897 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pykylie"
dynamic = ["version"]
authors = [
{ name="Rich Townsend", email="rhtownsend@wisc.edu" },
]
description = "Python re-implementation of KYLIE pulsating-star spectral synthesis code"
readme = "README.rst"
requires-python = ">=3.7"
dependencies = [
"numpy>=1.15.0",
"astropy>=5.3.2",
"scipy>=1.11.1",
"pymsg>=1.3"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Documentation = "https://pykylie.readthedocs.org"
Repository = "https://github.com/rhdtownsend/pykylie/"
Issues = "https://github.com/rhdtownsend/pykylie/issues"
[tool.hatch.version]
path = "src/pykylie/_version.py"
[tool.hatch.build.targets.sdist]
only-include = ["src"]