-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
25 lines (22 loc) · 895 Bytes
/
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
[project]
name = "EveryStamp"
version = "1.5.1"
authors = [
{ name = "Frits Sweijen" },
]
description = "A Python interface for retrieving FITS or image cutouts from a variety of astronomical surveys."
requires-python = ">=3.9"
dependencies = ["astropy", "aplpy", "astroquery", "matplotlib", "markupsafe", "numpy<2", "panstamps", "Pillow", "opencv-python-headless", "pyvo", "requests", "scikit-image", "tqdm"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
]
[project.scripts]
everystamp = "everystamp.everystamp:main"
[project.urls]
"Homepage" = "https://tikk3r.github.io/EveryStamp/"
"Bug Tracker" = "https://github.com/tikk3r/EveryStamp/issues"
[build-system]
requires = ["setuptools", "wheel", "requests"]