-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.45 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "exorad"
version = "2.1.127"
description = "The generic point source radiometric model"
authors = ["Lorenzo V. Mugnai <lorenzo.mugnai@uniroma1.it>", "Enzo Pascale"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/ExObsSim/ExoRad2-public"
repository = "https://github.com/ExObsSim/ExoRad2-public"
documentation = "https://exorad2-public.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.9"
astropy = "*"
matplotlib = "*"
mpmath = "*"
numpy = "*"
scipy = "*"
h5py = "^3.2"
xlrd = "1.2.0"
xlwt = "*"
requests = "*"
photutils = "*"
pandas = "*"
[tool.poetry.dev-dependencies]
sphinx = "*"
sphinxcontrib-napoleon = "*"
sphinxcontrib-jsmath = "*"
nbsphinx = "*"
sphinx_rtd_theme = "*"
codecov = "*"
flake8 = "*"
pytest = "*"
[tool.poetry.scripts]
exorad = "exorad.exorad:main"
exorad-plot = "exorad.utils.plotter:main"