This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (67 loc) · 1.99 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
[build-system]
requires = ["wheel", "setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "autoreduce_frontend"
version = "22.0.0.dev24"
description = "The frontend of the ISIS Autoreduction service"
readme = "README.md"
license = { text = "GNU General Public License" }
classifiers = ["Framework :: Django", "Programming Language :: Python :: 3"]
dependencies = [
"autoreduce_qp==22.0.0.dev38",
"Django==4.0.6",
"django_extensions==3.1.5",
"djangorestframework==3.13.1",
"django-filter==21.1",
"django-crispy-forms==1.14.0",
"django-tables2==2.4.1",
"requests==2.27.1",
"httpagentparser==1.9.2",
"django-hurricane",
]
[project.optional-dependencies]
dev = [
"axe-selenium-python==2.1.6",
"django-debug-toolbar==3.4.0",
"autoreduce-rest-api",
"gunicorn",
"mysqlclient==2.1.0",
"selenium",
"parameterized==0.8.1",
]
[project.urls]
"Repository" = "https://github.com/autoreduction/frontend"
"Wiki" = "https://github.com/autoreduction/queue-processor/wiki"
[project.scripts]
autoreduce-webapp-manage = "autoreduce_frontend.manage:main"
[tool.setuptools]
packages = ["autoreduce_frontend"]
[tool.yapf]
column_limit = 120
based_on_style = "pep8"
allow_split_before_dict_value = false
each_dict_entry_on_separate_line = true
[tool.yapfignore]
ignore_patterns = ["setup.py", "**/migrations", "venv/", "venv3/"]
[tool.pylint.MAIN]
load-plugins = ["pylint_django"]
django-settings-module = "autoreduce_webapp.settings"
extension-pkg-whitelist = ["pydantic"]
disable = [
"R0901", # too-many-ancestors
"R0904", # too-many-public-methods
"R0902", # too-many-instance-attributes
"R0903", # too-few-public-methods
"R1705", # no-else-return
"C0114", # missing-module-docstring
"C0115", # missing-class-docstring
"W0221", # arguments-differ
]
ignore = [".git", "migrations"]
[tool.pylint.FORMAT]
max-line-length = 120
[tool.pylint.DESIGN]
max-args = 8
[tool.pylint.SIMILARITIES]
min-similarity-lines = 10