-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (72 loc) · 1.85 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "freezing-nq"
version = "0.4.3"
description = "Freezing Saddles activity receive and enqueue worker"
readme = "README.md"
authors = [
{name = "Hans Lellelid", email = "[email protected]"},
{name = "Richard Bullington-McGuire", email = "[email protected]"},
]
maintainers = [
{name = "Richard Bullington-McGuire", email="[email protected]"},
]
license = {text = "Apache License (2.0)"}
dependencies = [
"arrow==1.3.0",
"envparse==0.2.0",
"falcon==4.0.2",
"freezing-model @ https://github.com/freezingsaddles/freezing-model/archive/0.11.2.tar.gz",
"greenstalk==2.0.2",
"gunicorn==23.0.0",
"python-mimeparse==2.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Topic :: Games",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Natural Language :: English",
]
[project.optional-dependencies]
dev = [
"bandit",
"black",
"fawltydeps",
"flake8",
"flake8-pyproject",
"flake8-bugbear",
"flake8-builtins",
"flake8-comprehensions",
"flake8-docstrings",
"flake8-eradicate",
"flake8-print",
"flake8-return",
"flake8-simplify",
"flake8-sorted-keys",
"flake8-todo",
"flake8-raise",
"isort",
"mypy",
"pytest",
"pytest-mock",
]
[tool.isort]
profile = "black"
[tool.flake8]
# Thanks https://www.reddit.com/r/learnpython/comments/rr6y69/comment/hqeqt68/?utm_source=share&utm_medium=web2x&context=3
ignore = [
"E203",
"E501",
"W503",
"W503",
]
max-line-length = 88
max-complexity = 39
extend-ignore = "E203"
inline-quotes = "double"