-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.29 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bridging_bot"
version = "0.0.1"
description = "Bridging Bot"
authors = ["Peter Darche <pdarche@gmail.com>", "Ian Baker <ian@sonic.net>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://www.plurality.institute/"
repository = "https://github.com/Plurality-Institute/bridging-bot"
package-mode = true
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "*"
asyncpraw = "*"
asyncpg = "*"
aiohttp = "*"
google-api-python-client = "*"
google-auth-httplib2 = "*"
google-auth-oauthlib = "*"
prefect = "^3.0"
openai = "*"
braintrust = "0.5.6"
pydantic = "^2.7.0,<2.10"
fastapi = "*"
uvicorn = {extras = ["standard"], version = "*"}
jinja2 = "*"
bcrypt = "*"
itsdangerous = "*"
python-multipart = "*"
[tool.poetry.group.dev.dependencies]
ruff = "*"
pip-tools = "*"
pytest = "*"
pytest-asyncio = "*"
pre-commit = "*"
jupyterlab = "*"
pandas = "*"
matplotlib = "*"
scikit-learn = "*"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["E501"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s.%(msecs)03d [%(levelname)s] (%(filename)s:%(lineno)s) %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"