-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.25 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
[project]
name = "template-python-package"
version = "0.1.0"
description = "Template Python Package"
authors = [
{name = "Luke W. Johnston", email = "[email protected]" },
{name = "Kristiane Beicher", email = "[email protected]" },
{name = "Signe Kirk Brødbæk", email = "[email protected]" },
{name = "Marton Vago", email = "[email protected]" },
]
maintainers = [
{name = "Luke W. Johnston", email = "[email protected]" },
{name = "Kristiane Beicher", email = "[email protected]" },
{name = "Signe Kirk Brødbæk", email = "[email protected]" },
{name = "Marton Vago", email = "[email protected]" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.md"]
requires-python = ">=3.12"
dependencies = []
# TODO: Update these
[project.urls]
homepage = "https://PROJECT.seedcase-project.org"
repository = "https://github.com/seedcase-project/REPO"
changelog = "https://github.com/seedcase-project/REPO/blob/main/CHANGELOG.md"
issues = "https://github.com/seedcase-project/REPO/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = [
# A short traceback mode to make it easier to view
"--tb=short",
# Use the `src/` package
"--import-mode=importlib",
]