-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
78 lines (70 loc) · 1.79 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
[project]
name = "massedit"
description = "Edit multiple files using Python text processing modules"
version = "0.70.0"
authors = [{name = "elmotec", email = "[email protected]"}]
license = {text = "MIT"}
keywords = [
"sed",
"editor",
"stream",
"python",
"edit",
"mass"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
"Intended Audience :: Developers",
]
urls = {Homepage = "http://github.com/elmotec/massedit"}
requires-python = ">=2.7" # not supported before min version in classifier.
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.scripts]
massedit='massedit:main'
[project.optional-dependencies]
test = [
"flake8",
"tox",
]
develop = [
"black",
"commitizen",
"flake8",
"pre-commit",
"pylint",
"tox",
]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py3{7,8,9,10,11}
isolated_build = True
[testenv]
description = Unit tests
commands = python tests.py
"""