-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 963 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
36
37
38
39
40
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "heasoftpy"
authors = [
{ name="HEASARC", email="[email protected]" },
]
maintainers = [
{ name="Abdu Zoghbi", email="[email protected]" },
]
description = "Python interface for Heasoft"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["astronomy", "heasoft", "heasarc"]
license = {text = "LICENSE"}
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://heasarc.gsfc.nasa.gov/lheasoft/heasoftpy/"
[tool.setuptools.packages.find]
include = ["heasoftpy*"]
exclude = ["notebook*", "licences*", "template*", "tests*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "heasoftpy.version.__version__"}
[project.optional-dependencies]
test = [
"pytest",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.cmdclass]
build_py = "install.HSPInstallCommand"