-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.41 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
[project]
name = "stsci.stimage"
description = "Various image processing functions"
requires-python = ">=3.9"
authors = [
{ name = "STScI", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.14",
]
dynamic = [
"version",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE"
content-type = "text/plain"
[project.urls]
Tracker = "https://github.com/spacetelescope/stsci.stimage/issues"
Documentation = "https://stscistimage.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/spacetelescope/stsci.stimage"
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
]
docs = [
"sphinx",
"sphinx-automodapi",
"sphinx-rtd-theme",
"tomli; python_version <\"3.11\"",
]
[build-system]
requires = [
"setuptools >=61",
"setuptools_scm[toml] >=3.4",
"wheel",
"numpy>=2.0.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
include = [
"stsci.stimage",
]
[tool.setuptools_scm]
write_to = "stsci/stimage/_version.py"