-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
52 lines (45 loc) · 1.2 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
[project]
name = "pyraf"
dynamic = [ "version" ]
license = {text = "BSD 3-Clause"}
authors = [
{name = "Rick White"},
{name = "Perry Greenfield"},
{name = "Chris Sontag"},
{name = "Ole Streicher"}
]
keywords = ["astronomy", "astrophysics", "utility", "iraf"]
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy"
]
description = "Pythonic interface to IRAF that can be used in place of the existing IRAF CL"
readme = {file = "README.rst", content-type = "text/x-rst"}
dependencies = [
"configobj",
"numpy",
"pyobjc; sys_platform == 'darwin'"
]
[project.optional-dependencies]
docs = ["astropy-sphinx-theme", "numpydoc", "sphinx"]
test = ["astropy", "pytest"]
[project.scripts]
pyraf = "pyraf:main"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-s"
[tool.coverage.run]
source = "pyraf"
omit = [ "pyraf/tests/*" ]
[tool.yapf]
based_on_style = "google"
column_limit = 79
[tool.flake8]
ignore = ""