forked from dfinity/dre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (70 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "dre-repo"
version = "0.4.0"
description = ""
authors = ["DRE Team <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10.0,<4"
colorama = "*"
elasticsearch = "<8.0,>=7.16"
elasticsearch-dsl = "*"
elasticsearch-follow = "*"
GitPython = "*"
numpy = "*"
pandas = "*"
paramiko = "*"
PyYAML = "*"
requests = "*"
tabulate = "*"
peewee = "*"
atlassian-python-api = "*"
python-dotenv = "*"
cachetools = "*"
pre-commit = "*"
pylint = "*"
tenacity = "*"
poetry = "^1.8.2"
ic-py = "*"
mkdocs-material = "^9.5.14"
mkdocs = "^1.5.3"
clickhouse-connect = "^0.7.0"
humanfriendly = "^10.0"
jupyter = "^1.0.0"
matplotlib = "^3.8.2"
ipython = "^8.21.0"
mkdocs-git-revision-date-localized-plugin = "^1.2.4"
mkdocs-git-committers-plugin-2 = "^2.2.3"
pydiscourse = "^1.6.1"
datamodel-code-generator = "^0.25.4"
pydantic-yaml = "^1.2.1"
google-api-python-client = "^2.119.0"
google-auth-httplib2 = "^0.2.0"
google-auth-oauthlib = "^1.2.0"
pydrive2 = "^1.19.0"
markdownify = "^0.11.6"
pytest = "^8.0.2"
pygithub = "^2.2.0"
pytest-mock = "^3.12.0"
mammoth = "^1.7.0"
slack-sdk = "^3.27.1"
git-changelog = "^2.5.1"
wrapt = "1.16.0"
poetry-plugin-export = "^1.8.0"
[tool.poetry.group.dev.dependencies]
black = "^24"
httpretty = "^1.1.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-format
(
^/release-controller/release_index.py # This file is generated from /bin/poetry.sh
)
'''