Skip to content

Commit cfa3828

Browse files
author
Dmitry Berezovsky
committed
chore: remove not needed configuration files
1 parent 4a66bb6 commit cfa3828

6 files changed

+10
-179
lines changed

setup.cfg .flake8

+5-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[flake8]
2-
max-complexity = 12
3-
max-line-length=127
2+
max-complexity = 15
3+
max-line-length = 120
44

55
exclude =
66
# No need to traverse our git directory
@@ -33,18 +33,6 @@ ignore =
3333

3434
per-file-ignores =
3535
# imported but unused
36-
__init__.py: F401
37-
38-
[mypy]
39-
python_version = 3.7
40-
show_error_codes = true
41-
ignore_errors = false
42-
warn_return_any = false
43-
ignore_missing_imports = true
44-
disallow_any_generics = false
45-
pretty = true
46-
47-
[mypy-examples]
48-
ignore_errors = true
49-
follow_imports = silent
50-
ignore_missing_imports = true
36+
__init__.py: F401,
37+
test_*.py: D103, D104, D100, D101, D102, D106
38+
__version__.py: D104, D100, D101, D102

pyproject.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
]
24-
readme = "README.md"
24+
readme = "docs/pypi-description.md"
2525
packages = [
2626
{include = "ptouch_py", from = "src"},
2727
{include = "tapen", from = "src"},
2828
]
29-
include = ["tapen/resources/*", "tapen/renderer/resources/*"]
29+
include = [
30+
"tapen/resources/*", "tapen/renderer/resources/*",
31+
"LICENSE", "README.md",
32+
]
3033

3134
[tool.poetry.scripts]
3235
tapen = "tapen.cli:default_entrypoint"

requirements-dev.txt

-13
This file was deleted.

requirements.txt

-10
This file was deleted.

src/MANIFEST.in

-4
This file was deleted.

src/setup.py

-133
This file was deleted.

0 commit comments

Comments
 (0)