forked from MoveOnOrg/actionkit-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.49 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dsa-actionkit"
version = "0.1.7"
authors = [
{ name = "DSA NTC", email = "[email protected]" },
{ name = "Schuyler Duveen", email = "[email protected]" },
]
description = "actionkit-templates allows you to view your ActionKit templates locally testing different configurations for each page type. It also documents by-code many context variables for each page"
dependencies = [
"django==3.2.6",
"requests>=2.22.0",
"mysqlclient==2.2.1",
"pytest-django",
"django_extensions",
"werkzeug",
"ruff",
"python-dotenv",
]
keywords = ["actionkit"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
# Django 3.6 depends on distutils, which is deprecated in 3.12
requires-python = "<3.12"
[project.scripts]
aktemplates = "dsa_actionkit.aktemplates:serve_templates"
[project.optional-dependencies]
test = ["selenium>=3.8.0", "pyvirtualdisplay"]
[tool.setuptools.package-data]
"dsa_actionkit" = ["contexts/*.csv", "templates/*.html"]
[tool.setuptools.packages]
find = { namespaces = false }
[tool.ruff]
fix = true
select = ["ALL"]
per-file-ignores = { "tests/**/*.py" = [
"S101",
"D100",
"D103",
"ANN201",
"ANN001",
"INP001",
] }
[tool.ruff.pydocstyle]
convention = "google"