-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
107 lines (100 loc) · 2.29 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
101
102
103
104
105
106
107
[build-system]
build-backend = "flit_core.buildapi"
requires = [
"flit-core>=3.2,<4",
]
[project]
name = "allianceauth-corptools-tax-tools"
readme = "README.md"
keywords = [
"allianceauth",
"eveonline",
]
license = { file = "LICENSE" }
authors = [
{ name = "AaronKable", email = "[email protected]" },
]
requires-python = ">=3.8"
classifiers = [
"Environment :: Web Environment",
"Framework :: Celery",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dynamic = [
"description",
"version",
]
dependencies = [
"allianceauth>=3.1,<5",
"allianceauth-corptools>=2.5.5",
"allianceauth-invoices>=0.1.5",
"py-cord>2,<3",
]
urls.Homepage = "https://github.com/Solar-Helix-Independent-Transport/allianceauth-corp-tools-tax-tools"
urls.Source = "https://github.com/Solar-Helix-Independent-Transport/allianceauth-corp-tools-tax-tools"
urls.Tracker = "https://github.com/Solar-Helix-Independent-Transport/allianceauth-corp-tools-tax-tools/issues"
[tool.flit.module]
name = "taxtools"
[tool.isort]
profile = "django"
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"DJANGO",
"ALLIANCEAUTH",
"FIRSTPARTY",
"LOCALFOLDER",
]
known_allianceauth = [
"allianceauth",
"esi",
]
known_django = [
"django",
]
skip_gitignore = true
[tool.flake8]
exclude = [
".git",
"*migrations*",
".tox",
"dist",
"htmlcov",
]
max-line-length = 119
select = [
"C",
"E",
"F",
"W",
"B",
"B950",
]
ignore = [
'E203',
'E231',
'E501',
'W503',
'W291',
'W293',
]
[tool.djlint]
max_attribute_length = 119
max_line_length = 119
max_blank_lines = 1