forked from spacetelescope/calcos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (66 loc) · 1.35 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
72
73
74
75
[project]
name = "calcos"
description = "Calibration software for COS (Cosmic Origins Spectrograph)"
requires-python = ">=3.8"
authors = [
{ name = "Phil Hodge" },
{ name = "Robert Jedrzejewski" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: C",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"astropy>=5.0.4",
"numpy",
"scipy",
"stsci.tools>=4.0.0",
]
dynamic = [
"version",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
calcos = "calcos:main"
[project.optional-dependencies]
docs = [
"sphinx",
]
test = [
"ci-watson",
"pytest",
"pytest-cov",
]
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=3.4",
"wheel",
"oldest-supported-numpy",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.package-data]
calcos = [
"pars/*",
"*.help",
]
[tool.setuptools_scm]
write_to = 'calcos/version.py'
[tool.pytest.ini_options]
minversion = "3.0"
norecursedirs = [
"build",
"doc/build",
"src",
]
junit_family = "xunit2"