-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 1009 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
32
33
34
35
[build-system]
requires = ["uv"]
[project]
name = "python-project-template"
version = "2024.0.1"
dependencies = [
"pylint",
"flake8",
"pytest",
"coverage",
"mypy",
"mypy-extensions",
"ruff",
"pre-commit",
]
requires-python = ">=3.10"
authors = [
{ name = "Matthew Alexandrakis", email = "m.alexandrakis@qmul.ac.uk" },
]
description = "Example Python Project Template"
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["python", "best practices", "linting", "formatting"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://github.qmul.ac.uk/aax010/python-project-template"
Documentation = "https://github.qmul.ac.uk/aax010/python-project-template"
Repository = "https://github.qmul.ac.uk/aax010/python-project-template"
"Bug Tracker" = "https://github.qmul.ac.uk/aax010/python-project-template/issues"
Changelog = "https://github.qmul.ac.uk/aax010/python-project-template/blob/master/CHANGELOG.md"