-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
119 lines (107 loc) · 2.8 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
[build-system]
requires = ["hatchling==1.17.1"]
build-backend = "hatchling.build"
[project]
name = "simpleflow"
description = "Python library for dataflow programming with Amazon SWF"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT License" }
authors = [
{ name = "Greg Leclercq" },
]
maintainers = [
{ "email" = "tech@botify.com" },
]
keywords = ["simpleflow", "amazon swf", "simple workflow"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: 3.13",
]
dynamic = ["version"]
dependencies = [
"attrs",
"boto3>=1.28.20",
"dill>=0.3.6",
"diskcache>=4.1.0",
"Jinja2",
"markupsafe",
"multiprocess>=0.70.14",
"lazy_object_proxy",
"lockfile>=0.9.1",
"tabulate>=0.8.2,<1.0.0",
"setproctitle",
"click",
"psutil",
"pytz",
]
[project.optional-dependencies]
dev = [
"boto3-stubs[s3,swf]",
"cffi==v1.17.0rc1; python_full_version=='3.13.0b4'", # via cryptography via moto, secretstorage
"flaky",
"hatch==1.7.0",
"invoke",
"moto>=4.2.8,<5.0.0",
"packaging",
"pre-commit",
"pytest",
"pytest-xdist>=3.2.0",
"ruff",
"setuptools<72", # See https://github.com/pypa/setuptools/issues/4519
"sphinx",
"sphinx_rtd_theme",
"sure",
"typing-extensions",
"vcrpy",
"twine",
]
doc = [
"mkdocs",
"mkdocs-material",
"pygments",
"pymdown-extensions",
"markdown-include",
]
[project.urls]
documentation = "https://botify-labs.github.io/simpleflow"
repository = "https://github.com/botify-labs/simpleflow"
changelog = "https://github.com/botify-labs/simpleflow/blob/main/CHANGELOG.md"
[project.scripts]
simpleflow = "simpleflow.command:cli"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = [
"UP", # pyupgrade
"I", # isort
"E", # pycodestyle errors
"W", # pycodestyle warnings
"RUF", # ruff
]
fixable = ["ALL"]
allowed-confusables = ["‘", "’"]
extend-ignore = [
]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
[tool.bandit]
exclude_dirs = ["/tests", "/examples", "/venv", "/build"]
skips = ["B404"]
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=setup.py --ignore=tasks.py --ignore=docs/ --ignore=build/ --ignore=examples/"
[tool.hatch.version]
path = "simpleflow/__init__.py"
[tool.hatch.build]
include = ["/simpleflow"]
exclude = ["*~"]