-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
97 lines (88 loc) · 2.05 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
[build-system]
requires = [
"wheel",
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "flake8-absolute-import"
description = "flake8 plugin to require absolute imports"
authors = [
{ name = "Brian Skinn", email = "brian.skinn@gmail.com" },
]
classifiers = [
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
"Development Status :: 5 - Production/Stable",
]
keywords = [
"flake8-plugin",
"linting",
"absolute-imports",
"relative-imports",
]
requires-python = ">=3.6"
dependencies = [
"flake8>=5.0",
]
dynamic = [
"version",
"readme",
]
[project.urls]
Homepage = "https://github.com/bskinn/flake8-absolute-import"
Changelog = "https://github.com/bskinn/flake8-absolute-import/blob/main/CHANGELOG.md"
Thank = "https://twitter.com/btskinn"
Donate = "https://github.com/sponsors/bskinn"
[project.license]
text = "MIT License"
[project.entry-points."flake8.extension"]
ABS1 = "flake8_absolute_import:Plugin"
[tool.setuptools]
platforms = [
"any",
]
license-files = [
"LICENSE.txt",
]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "flake8_absolute_import.version.__version__"}
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = [
"src",
]
namespaces = false
[tool.black]
line-length = 88
include = '''
(
^tests/.*[.]py$
| ^src/flake8_absolute_import/.*[.]py$
| ^setup[.]py
| ^conftest[.]py
)
'''
exclude = '''
(
__pycache__
| ^[.]
| ^doc
| ^env
)
'''