-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
## General project config
[project]
name = "gmatpyplus"
authors = [
{ name = "William Easdown Babb", email = "weasdown99@gmail.com" },
]
description = "An extra wrapper for the GMAT Python API to simplify setting up mission simulations."
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["numpy > 2.0.0"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
# "Topic :: Orbital Mechanics :: Astrodynamics",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dynamic = [
"version", # Enables dynamic versioning.
"urls", # Enables getting of URLs from metadata hook.
]
## Hatch config
# Gets project version from releases on VCS.
[tool.hatch.version]
source = "vcs"
scheme = "standard"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
# Build hook
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
# Metadata hook
[tool.hatch.metadata.hooks.vcs]
[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://github.com/weasdown/gmatpyplus"
source_archive = "https://github.com/weasdown/gmatpyplus/releases"
Issues = "https://github.com/weasdown/gmatpyplus/issues/"
# Build targets
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.venv*",
"/build",
"/build-archive",
"/dist",
"/plugins",
"/source",
]
[tool.hatch.build.targets.wheel]
packages = ["gmatpyplus"]