-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (91 loc) · 2.17 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = [
"setuptools>=58.3",
"setuptools-scm[toml]>=7.0",
"wheel>=0.38",
]
build-backend = "setuptools.build_meta"
[project]
name = "restorable"
readme = "README.md"
description = "Restorable objects, configuration, and modules"
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.7,<4.0"
dynamic = [
"version",
]
[project.urls]
Repository = "https://github.com/whardier/restorable-python"
[project.optional-dependencies]
dev = [
"black~=22.10",
"build~=0.9",
"flake8~=5.0",
"flake8-bandit~=4.1",
"flake8-bugbear~=22.12",
"flake8-builtins~=2.0",
"flake8-comprehensions~=3.10",
"flake8-eradicate~=1.4",
"flake8-isort~=5.0",
"flake8-plugin-utils~=1.3",
"flake8-print~=5.0",
"flake8-pyproject~=1.2",
"flake8-requirements~=1.7",
"flake8-return~=1.2",
"flake8-use-pathlib~=0.3",
"mccabe~=0.7",
"mypy~=0.991",
"pre-commit~=2.20",
"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.flake8]
max-line-length = 120
exclude = [
".git",
".tox",
"__pycache__",
".eggs",
"build",
"dist",
"tests",
"src/_es",
]
doctests = true
per-file-ignores = [
"tests/*:S101",
"src/*:E800,E501",
"src/**/__init__.py:F401",
]
max-complexity = 10
[tool.isort]
line_length = 120
profile = "black"
[tool.mypy]
explicit_package_bases = true
mypy_path = "src"