-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 887 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
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "python_package_template"
version = "0.0.0"
authors = [
{ name="Mark", email="mark@remarkablemark.org" },
]
description = "Python Package Template"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = []
[project.optional-dependencies]
build = [
"build==1.4.0",
"twine==6.2.0",
]
docs = [
"pdoc==16.0.0",
]
lint = [
"black==25.12.0",
"isort==7.0.0",
"pre-commit==4.5.1",
"ruff==0.14.13",
]
test = [
"coverage==7.13.1",
"pytest==9.0.2",
]
[project.urls]
Homepage = "https://github.com/remarkablemark/python_package_template"
Issues = "https://github.com/remarkablemark/python_package_template/issues"
[tool.black]
fast = true
[tool.coverage.run]
omit = [
"/tmp/*",
]