-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.3 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
[tool.poetry]
name = "library-analyzer"
version = "0.1.1"
description = "Analysis of Python libraries and code that uses them."
authors = ["Lars Reimann <[email protected]>"]
license = "MIT"
readme = "docs/README.md"
repository = "https://github.com/Safe-DS/Library-Analyzer"
documentation = "https://library-analyzer.readthedocs.io"
keywords = ["static-analysis", "library", "client-code"]
packages = [
{ include = "library_analyzer", from = "src"},
]
[tool.poetry.scripts]
analyze-library = "library_analyzer.main:main"
[tool.poetry.dependencies]
python = "^3.10,<3.12"
astroid = "^2.14.2"
black = ">=23.1,<25.0"
levenshtein = ">=0.20.9,<0.27.0"
scipy = "^1.10.1"
spacy = "^3.5.1"
docstring-parser = ">=0.15,<0.17"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.1,<9.0.0"
pytest-cov = ">=4,<7"
[tool.poetry.group.docs.dependencies]
jupyter = "^1.0.0"
mkdocs = "^1.4.2"
mkdocstrings = ">=0.20,<0.26"
mkdocstrings-python = ">=0.8.3,<1.11.0"
mkdocs-autorefs = ">=0.4.1,<1.3.0"
mkdocs-exclude = "^1.0.2"
mkdocs-gen-files = ">=0.4,<0.6"
mkdocs-glightbox = ">=0.3.1,<0.5.0"
mkdocs-jupyter = ">=0.24,<0.26"
mkdocs-literate-nav = "^0.6.0"
mkdocs-material = "^9.1.2"
mkdocs-section-index = "^0.3.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120