-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
77 lines (72 loc) · 2.12 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "allianceauth-discordbot"
dynamic = ["version", "description" ]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{ name = "AaronKable", email = "[email protected]"}
]
keywords = [
"allianceauth",
"eveonline",
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Celery",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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"
]
dependencies = [
"allianceauth>=3.0.0,<5.0.0",
"py-cord>2.0.0,<3.0.0",
"pendulum>=2.1.2,<4.0.0",
"redis>=4.2.0,<6.0.0",
"django-solo>=2.1.0,<3.0.0"
]
[project.urls]
Home = "https://github.com/Solar-Helix-Independent-Transport/allianceauth-discordbot"
Source = "https://github.com/Solar-Helix-Independent-Transport/allianceauth-discordbot"
Tracker = "https://github.com/Solar-Helix-Independent-Transport/allianceauth-discordbot/issues"
[tool.flit.module]
name = "aadiscordbot"
[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