-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.02 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "astropt"
dynamic = [
"dependencies",
"version"
]
authors = [
{ name="Michael J. Smith", email="[email protected]" },
]
description = "Transformer for galaxy images (and general astronomy)"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"astropt",
"astronomy",
"scientific computing",
"astrophysics",
"pytorch"
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/smith42/astropt"
Issues = "https://github.com/smith42/astropt/issues"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/astropt/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"