-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "spherimatch"
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
"pandas",
]
requires-python = ">=3.9"
authors = [
{name = "Yuan-Ming Hsu"}
]
description = "Cross-Matching and Self-Matching in Spherical Coordinates."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["cross-matching", "spherical", "astronomy"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/technic960183/spherimatch/"
Documentation = "https://technic960183.github.io/spherimatch/"
Repository = "https://github.com/technic960183/spherimatch.git"
"Bug Tracker" = "https://github.com/technic960183/spherimatch/issues"
[project.optional-dependencies]
dev = [
"build",
"sphinx",
"sphinx_rtd_theme",
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.build.targets.wheel]
packages = ["spherimatch/"]
[tool.hatch.version]
path = "spherimatch/__init__.py"