-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.04 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
[tool.poetry]
name = "pytransflow"
version = "0.1.1"
description = "Simple library for record-level processing using flows of transformations defined as YAML files."
authors = ["Vladimir Sivcevic <vladsiv@protonmail.com>"]
maintainers = ["Vladimir Sivcevic <vladsiv@protonmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["Flow", "Transformation", "Record Processing", "Data", "Pipelines"]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8.11"
pydantic = "^2.7.2"
PyYAML = "^6.0"
simpleeval = "^0.9.12"
tomli = "^1.2.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
black = "24.4.2"
mypy = "^1.10.0"
pylint = "^3.2.2"
Sphinx = "^6.2.1"
sphinx-autodoc-typehints = "^1.14.1"
sphinx-book-theme = "1.0.1"
types-PyYAML = "^6.0.3"
pytest-cov = "^3.0.0"
[tool.black]
line-length = 100
[tool.mypy]
plugins = [
"pydantic.mypy"
]
[tool.poetry.scripts]
linters = "scripts.build:linters"
tests = "scripts.build:tests"
docs = "scripts.build:docs"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"