-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
122 lines (113 loc) · 2.68 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["flit_core>=3.2", "flit_scm", "wheel"]
build-backend = "flit_scm:buildapi"
[project]
name = "joeflow"
authors = [
{ name = "Johannes Maron", email = "[email protected]" }
]
readme = "README.rst"
license = { file = "LICENSE" }
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Topic :: Software Development",
"Topic :: Home Automation",
"Topic :: Internet",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development",
]
keywords = [
"django",
"process",
"automation",
"workflow",
"framework",
"task",
]
requires-python = ">=3.9"
dependencies = [
"django>=2.2",
"django-appconf",
"graphviz>=0.18",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-django",
"pytest-env",
"redis",
]
lint = [
"bandit==1.7.10",
"black==24.10.0",
"flake8==7.1.1",
"isort==5.13.2",
"pydocstyle[toml]==6.3.0",
]
docs = [
"celery>=4.2.0",
"django-reversion",
"dramatiq",
"django_dramatiq",
"redis",
]
reversion = [
"django-reversion",
]
celery = [
"celery>=4.2.0",
]
dramatiq = [
"dramatiq",
"django_dramatiq",
]
[project.urls]
Project-URL = "https://github.com/codingjoe/joeflow"
[tool.flit.module]
name = "joeflow"
[tool.setuptools_scm]
write_to = "joeflow/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=joeflow --doctest-modules"
testpaths = [
"tests",
]
norecursedirs = "tests/testapp"
DJANGO_SETTINGS_MODULE = "tests.testapp.settings"
env = "D:DRAMATIQ_BROKER = dramatiq.brokers.stub.StubBroker"
[tool.coverage.report]
show_missing = true
[tool.isort]
atomic = true
line_length = 88
known_first_party = "joeflow, tests"
include_trailing_comma = true
default_section = "THIRDPARTY"
combine_as_imports = true
[tool.pydocstyle]
add_ignore = "D1"
match_dir = "(?!tests|env|docs|\\.).*"
match = "(?!setup).*.py"