-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (62 loc) · 1.68 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
[build-system]
requires = [
"setuptools>=58.3",
"setuptools-scm[toml]>=7.0",
"wheel>=0.38",
]
build-backend = "setuptools.build_meta"
[project]
name = "changetools"
readme = "README.md"
description = "Change evaluation functions and decorators"
license = {text = "MIT"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: General",
"Topic :: Text Processing",
]
requires-python = ">=3.7,<4.0"
dynamic = [
"version",
]
[project.urls]
Repository = "https://github.com/whardier/changetools-python"
[project.optional-dependencies]
dev = [
"black~=22.10",
"build~=0.9",
"flake8-awesome~=1.3",
"mypy~=0.991",
"pytest~=7.2",
"tox~=3.27",
"twine~=4.0",
]
[tool.setuptools.packages.find]
where = [
"src"
]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
[tool.black]
line_length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.mypy]
explicit_package_bases = true
mypy_path = "src"