-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"cython>=3,<4",
"extension-helpers>=1,<2",
"numpy>=2,<3",
"setuptools",
"setuptools-scm>=6.2",
]
[project]
name = "pyregion"
description = "python parser for ds9 region files"
readme.content-type = "text/x-rst"
readme.file = "README.rst"
license.text = "MIT"
authors = [
{name = "Jae-Joon Lee", email = "[email protected]"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
]
dynamic = [ "version" ]
dependencies = [
"astropy>=5",
"numpy>=1.23",
"pyparsing>=2" ]
optional-dependencies.docs = [
"matplotlib",
"sphinx",
"sphinx-astropy",
"sphinx-rtd-theme" ]
optional-dependencies.test = [
"pytest",
"pytest-astropy"
]
urls.Documentation = "https://pyregion.readthedocs.io/"
urls.Homepage = "https://github.com/astropy/pyregion"
urls.Source = "https://github.com/astropy/pyregion"
urls.Tracker = "https://github.com/astropy/pyregion/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = { namespaces = false }
[tool.setuptools.package-data]
"pyregion.tests.data" = [ "*.header", "*.reg" ]
[tool.distutils.upload_docs]
upload-dir = "docs/_build/html"
show-response = 1
[tool.setuptools_scm]
write_to = "pyregion/version.py"
[tool.pytest.ini_options]
minversion = "6.0"
norecursedirs = [ "build", "docs/_build" ]
testpaths = [ "pyregion", "docs" ]
[tool.extension-helpers]
use_extension_helpers = "true"