-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
83 lines (70 loc) · 2.01 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{name = "Frank Hoffmann", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
dependencies = [
"rich >=12.6.0",
"astunparse >=1.6.3",
"click >=8.1.7",
]
description = 'minimize python source code'
keywords = []
license = "MIT"
name = "pysource-minimize"
readme = "README.md"
requires-python = ">=3.8"
version="0.7.0"
[project.scripts]
pysource-minimize = "pysource_minimize.__main__:main"
[project.urls]
Documentation = "https://github.com/15r10nk/pysource-minimize#readme"
Issues = "https://github.com/15r10nk/pysource-minimize/issues"
Source = "https://github.com/15r10nk/pysource-minimize"
[tool.black]
target-version = ["py38"]
[tool.commitizen]
changelog_incremental = true
major_version_zero = true
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = true
version_files = [
"src/pysource_minimize/__init__.py:version"
]
version_provider = "pep621"
[tool.hatch.envs.hatch-test]
extra-dependencies = [
"pysource-codegen>=0.4.1",
"inline-snapshot",
"pytest-xdist[psutil] >=3.1.0",
]
[[tool.hatch.envs.hatch-test.matrix]]
python=['3.8',"3.9","3.10","3.11","3.12","3.13"]
[[tool.hatch.envs.mypy.matrix]]
python=['3.8',"3.10","3.11","3.12","3.13"]
[tool.hatch.envs.mypy]
extra-dependencies=["mypy"]
scripts.test = ["mypy src"]
[tool.hatch.envs.docs]
dependencies = [
"mkdocs>=1.4.2",
"mkdocs-material[imaging]>=8.5.10",
"mkdocstrings>=0.19.0"
]
scripts.serve = ["mkdocs serve {args}"]
[tool.hatch.version]
path = "src/pysource_minimize/__init__.py"