-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
50 lines (44 loc) · 1.07 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = [
"numpy",
"cython",
"setuptools",
"setuptools-scm>=8.0"
]
[project]
name = "palpy"
description = "PAL -- A Positional Astronomy Library"
license = {text = "GPLv2 License"}
readme = "README.rst"
authors = [
{name="Tim Jenness", email="tim.jenness@gmail.com"},
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: C",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = [
"Starlink",
]
dependencies = [
"numpy",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/Starlink/palpy"
[tool.black]
line-length = 110
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 110
[tool.setuptools_scm]
[tool.setuptools]
# Stop setuptools complaining about the cextern directory.
py-modules = ["palpy"]