-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (61 loc) · 1.62 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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "deface-social"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Robert Grimm", email = "apparebit@gmail.com" }]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Text Processing",
"Topic :: Utilities"
]
# Build tool extracts description and version from package, reusing the value
# of top-level docstring and the __version__ variable.
dynamic = ['description', 'version']
# deface has no runtime dependencies beyond the Python standard library.
dependencies = []
[tool.flit.module]
name = "deface"
[project.scripts]
deface = "deface.cli:main"
[project.optional-dependencies]
test = [
"mypy",
"pytest",
"pytest-cov"
]
doc = [
"furo",
"sphinx",
"sphinx-argparse-cli",
"sphinxext-opengraph"
]
dev = [
"flit"
]
[project.urls]
Source = "https://github.com/apparebit/deface"
Documentation = "https://apparebit.github.io/deface/"
Changelog = "https://apparebit.github.io/deface/changelog.html"
[tool.mypy]
files = ["run.py", "deface/**/*.py"]
disallow_any_unimported = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
[tool.black]
target-version = ['py39']
skip-string-normalization = true