-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (30 loc) · 901 Bytes
/
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
[tool.poetry]
name = "ror"
version = "v0.1.1"
description = "Simple pipelining framework in Python"
authors = ["Patrick Tourniaire <patrick@tourniaire.net>"]
readme = "README.md"
homepage = "https://patricktourniaire.github.io/ror"
documentation = "https://patricktourniaire.github.io/ror/api_reference/ror.html"
repository = "https://github.com/PatrickTourniaire/ror"
keywords = ["machine-learning", "pipelines", "data-processing"]
[tool.poe.tasks]
# Formatting and linting scripts
flake8 = "flake8 ."
pyink = "pyink ."
mypy = "mypy ."
clean = ["flake8", "pyink", "mypy"]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
rich = "^13.5.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
pyink = "^23.5.0"
mypy = "^1.3.0"
pre-commit = "^3.3.2"
pytest = "^7.4.0"
twine = "^4.0.2"
poethepoet = "^0.20.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"