-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 845 Bytes
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
[project]
name = "exohw"
authors = [
{ name="Your Name", email="your.email@example.com" },
]
description = "A Hello World Project"
# Relative path to the README.md file
readme = "README.md"
# Pin for an analysis (== or ~= for patching) and minimal for a package (>=)
requires-python = "~=3.13.0"
# Relative path to the license file
license.file = "LICENSE"
# Use git tags for versioning
dynamic = ["version"]
dependencies = [
# pin (== or ~= with patches) when developing scripts, minimal (>=) for packages
"numpy==2.3.5",
]
[tool.hatch.build.targets.wheel]
packages = ["src/exohw"]
[build-system]
# Require hatch-vcs alongside hatchling to enable Git tag versioning
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
# Use the git version to set the version of the package
[tool.hatch.version]
source = "vcs"