forked from Schwarzam/splusdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 897 Bytes
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
[build-system]
requires = ["setuptools>=67", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "splusdata"
version = "5.22"
description = "Download SPLUS catalogs, FITS and more"
authors = [
{ name = "Gustavo Schwarz", email = "gustavo.b.schwarz@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.7"
license = { text = "Apache-2.0" }
keywords = ["S-PLUS", "astronomy", "catalogs", "FITS"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"adss",
"requests",
"astropy",
"astroquery",
"numpy",
"pandas",
"scipy",
"pillow",
"pyyaml",
"tqdm",
]
[project.scripts]
splusdata = "splusdata.readconf:main"
scubes_dr6 = "splusdata.scubes.scripts:scubes"
[tool.setuptools.packages.find]
where = ["."]
# python -m build
# python -m twine upload dist/*