-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.27 KB
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 = "copier-python-wxpython"
version = "0.1.0"
description = "A Copier template for Python projects with wxPython framework."
requires-python = ">=3.10"
authors = [
{ name = "Garrett HE", email = "garrett.he@outlook.com" }
]
readme = "README.md"
license = { text = "BSD-3-Clause" }
keywords = ["copier", "template", "code-generation", "python", "wxpython"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = []
[project.urls]
homepage = "https://github.com/garrett-he/copier-python-wxpython"
repository = "https://github.com/garrett-he/copier-python-wxpython.git"
changelog = "https://github.com/garrett-he/copier-python-wxpython/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"chance>=0.110",
"copier-templates-extensions>=0.3.2",
"pre-commit>=4.3.0",
"pylint>=3.3.8",
"pytest>=8.4.1",
"pytest-copie>=0.2.2",
"toml>=0.10.2",
]
[tool.pytest.ini_options]
addopts = "--ignore='template' -p no:warnings"