-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (42 loc) · 1.18 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
[build-system]
requires = ["setuptools >= 61.0"] # PEP 621 compliant
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "skyCatalogs"
description = "Writes, reads catalogs input to LSST DESC simulations"
readme = "README.md"
authors = [{ name = "Joanne Bogart", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = ["desc", "python", "catalog", "simulation"]
dependencies = [
'numpy',
'healpy',
'astropy',
'pyarrow',
'pandas',
]
requires-python = ">=3.7" # For setuptools >= 61.0 support
[tool.setuptools.dynamic]
version = {attr = "skycatalogs._version.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["./"]
namespaces = false
exclude = ["tests/*"]
[tool.setuptools.package-data]
"skycatalogs" = [
"data/row_groups/*.parquet",
"data/row_groups/*.yaml",
"data/gaia_dr2/*.dat",
"data/gaia_dr2/*.txt",
"data/ci_sample/*.parquet",
"data/ci_sample/README",
"data/ci_sample/*.yaml",
"data/ci_sample/repo/*.*",
"data/ci_sample/repo/refcats/*/*.fits"
]