File: pyproject.toml

package info (click to toggle)
pyraf 2.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,444 kB
  • sloc: python: 25,165; ansic: 372; lisp: 92; makefile: 8
file content (52 lines) | stat: -rw-r--r-- 1,229 bytes parent folder | download | duplicates (2)
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 = ""