-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 860 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
42
[tool.poetry]
name = "tr-rm"
version = "0.1.0"
description = ""
authors = ["Alexandre Bulté <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "tr_rm"}]
[tool.poetry.dependencies]
python = "^3.10"
httpx = "^0.23.3"
dataset = "^1.6.0"
minicli = "^0.5.1"
toml = "^0.10.2"
sqlalchemy = "<2.0"
tabulate = "^0.9.0"
dataclass-csv = "^1.4.0"
flask = "^2.2.3"
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.5"
[tool.poetry.scripts]
tr_rm = "tr_rm.cli:run"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pytest-httpx = "^0.21.3"
flake8 = "^6.0.0"
[tool.poetry.group.analysis.dependencies]
pandas = "^2.0.0"
jupyter = "^1.0.0"
matplotlib = "^3.7.1"
[tool.pytest.ini_options]
filterwarnings = "ignore:.*SQLAlchemy 2.0.*:DeprecationWarning"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"