-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.36 KB
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
51
52
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "autoprof"
dynamic = [
"dependencies",
"version"
]
authors = [
{ name="Connor Stone", email="connorstone628@gmail.com" },
]
description = "Fast, robust, deep isophotal solutions for galaxy images."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = [
"autoprof",
"photometry",
"astronomy",
"scientific computing",
"astrophysics",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://autostronomy.github.io/AutoProf/"
Documentation = "https://autoprof.readthedocs.io"
Repository = "https://github.com/Autostronomy/AutoProf"
Issues = "https://github.com/Autostronomy/AutoProf/issues"
[project.scripts]
autoprof = "autoprof:run_from_terminal"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/autoprof/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"