-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (29 loc) · 921 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "project_template"
description = "A generic interface to generate a virtual buddy"
dynamic = ["version"]
authors = [
{name = "Pariterre", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
]
requires-python = ">=3.10"
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Documentation = "https://github.com/pyomeca/python_project_template/tree/main#readme"
Source = "https://github.com/pyomeca/python_project_template"
Tracker = "https://github.com/pyomeca/python_project_template/issues"
[tool.setuptools]
packages = ["project_template"]
[tool.setuptools.dynamic]
version = {attr = "project_template.__version__"}
[tool.pytest.ini_options]
pythonpath = "."
testpaths = "tests"