forked from aimclub/OSA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.46 KB
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
55
56
57
58
59
60
[project]
name = "osa_tool"
version = "0.2.11"
description = "Tool that just makes your open source project better!"
requires-python = ">=3.11,<4.0"
authors = [
{ name = "ITMO-NSS-team", email = "itmo.nss.team@gmail.com" }
]
readme = "README.md"
license = "BSD-3-Clause"
packages = [{ include = "osa_tool" }]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/aimclub/OSA"
Documentation = "https://itmo-nss-team.github.io/Open-Source-Advisor/"
Issues = "https://github.com/aimclub/OSA/issues"
[tool.poetry.dependencies]
aiofiles = ">=24.1.0"
black = ">=25.0.0"
colorama = ">=0.4.6"
docx2txt = ">=0.9"
GitPython = ">=3.1.40"
libcst = ">=1.8.6"
mkdocs = ">=1.6.0"
mkdocs-material = ">=9.6.0"
mkdocstrings = { extras = ["python"], version = ">=0.29.0" }
mkdocstrings-python = ">=1.16.0"
nbconvert = ">=6.0"
nbformat = ">=5.0"
packaging = ">=25.0"
pdfplumber = ">=0.11.0"
protollm = ">=0.1.6"
prompt_toolkit = ">=3.0.50"
Pygments = ">=2.18.0"
pydantic = ">=2.9.0,<3.0.0"
qrcode = ">=7.4.0"
reportlab = ">=4.2.0,<5.0.0"
structlog = ">=24.4.0"
tiktoken = ">=0.8.0"
tomli = ">=2.0.0"
tree-sitter = ">=0.23.0"
tree-sitter-python = ">=0.23.0"
pipreqs = { version = ">=0.5.0", python = "<3.13" }
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
pytest-asyncio = ">=1.0.0"
pytest-mock = ">=3.12.0"
[project.scripts]
osa-tool = "osa_tool.run:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120