-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
54 lines (48 loc) · 1.31 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
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
skip = ["flowpipe/__init__.py"]
[tool.pylint."MESSAGES CONTROL"]
disable = [
"duplicate-code",
"no-else-raise",
"too-many-function-args",
"too-many-locals",
"too-many-arguments",
"too-few-public-methods",
"too-many-instance-attributes",
"too-many-public-methods",
]
[tool.poetry]
name = "Flowpipe"
version = "1.0.1"
description = "A lightweight framework for flow-based programming in python."
authors = ["Paul Schweizer <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PaulSchweizer/flowpipe"
documentation = "https://flowpipe.readthedocs.io/en/latest/"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = ">=3.9"
ascii-canvas = ">=2.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
mock = "^5.1.0"
numpy = "^1.26.2"
pre-commit = "^3.5.0"
pylint = "^3.0.1"
pytest-cov = "^4.1.0"
pytest = "^7.4.2"
isort = { version = "^5.12.0", extras = ["pyproject"] }
mypy = "^1.6.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"