-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 1015 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
38
39
40
41
[tool.poetry]
name = "safe-ds-stubgen"
version = "0.3.0"
description = "Generation of Safe-DS stubs for Python libraries."
authors = ["Lars Reimann <[email protected]>"]
license = "MIT"
readme = "docs/README.md"
repository = "https://github.com/Safe-DS/Stub-Generator"
documentation = "https://stubgen.readthedocs.io"
keywords = ["data-science", "machine-learning", "dsl"]
packages = [
{ include = "safeds_stubgen", from = "src"},
]
[tool.poetry.scripts]
safe-ds-stubgen = "safeds_stubgen.main:main"
[tool.poetry.dependencies]
python = "^3.11"
mypy = "^1.6.1"
griffe = ">=0.47.0,<0.49"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.3,<9.0.0"
pytest-cov = ">=4,<7"
syrupy = "^4.6.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-glightbox = ">=0.3.1,<0.5.0"
mkdocs-material = "^9.4.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "--ignore=./tests/data --tb=short"