forked from AstarVienna/skycalc_ipy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (61 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
65 lines (61 loc) · 1.93 KB
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
[project]
name = "skycalc_ipy"
version = "0.1.5-alpha"
# When updating the version, also
# - update the date in anisocado/version.py
# - update the release notese in docs/source/index.rst
description = "Get atmospheric spectral information from the ESO skycalc server"
readme = "README.md"
requires-python = ">=3.8"
# When updating the version, also update the versions in .github/workflows/*
license = {text = "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"}
authors = [
{name = "Kieran Leschinski", email="kieran.leschinski@unive.ac.at"},
]
maintainers = [
{name = "Kieran Leschinski", email="kieran.leschinski@unive.ac.at"},
{name = "Hugo Buddelmeijer", email="hugo@buddelmeijer.nl"},
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
# Try to keep the dependencies on lower versions that have a wheel
# package on PyPI, for minimumdependencies.yml
"numpy>=1.18.0",
"astropy>=4.0",
"requests>=2.20",
"pyyaml>5.2"
]
[project.optional-dependencies]
test = [
"pytest>=5.0.0",
"pytest-cov",
# TODO: Should synphot be a normal dependency?
"synphot>=1.1.0",
"matplotlib>=3.2.0",
]
docs = [
"sphinx>=4.3.0",
"sphinx-rtd-theme>=0.5.1",
"jupyter_sphinx==0.2.3",
"sphinxcontrib-apidoc",
"nbsphinx",
"numpydoc",
"matplotlib>=3.2.0",
]
[project.urls]
"Homepage" = "https://skycalc-ipy.readthedocs.io/en/latest/"
"Source" = "https://github.com/AstarVienna/skycalc_ipy"
"Bug Reports" = "https://github.com/AstarVienna/skycalc_ipy/issues"
[tool.setuptools]
packages = ["skycalc_ipy"]
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"webtest: marks tests as requiring network (deselect with '-m \"not webtest\"')",
]