-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (55 loc) · 1.54 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ergate"
requires-python = ">=3.10"
description = "Workflows made easy, your way"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [{ name = "prryplatypus" }]
keywords = ["workflow", "worker"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
'pydantic>=2.0.0'
]
dynamic = ["version"]
[tool.setuptools]
packages = ["ergate"]
[project.urls]
Repository = "https://github.com/prryplatypus/ergate"
[project.optional-dependencies]
docs = ['mkdocs-material']
test = [
'mypy',
'ruff',
'flake8',
'flake8-pyproject'
]
[tool.setuptools.dynamic]
version = {attr = "ergate.__version__.VERSION"}
[tool.ruff]
preview = true
[tool.ruff.lint]
# https://docs.astral.sh/ruff/rules/
extend-select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"N" # pep8-naming
]
[tool.flake8]
max-line-length = 88