generated from mlibrary/python-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.13 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
[tool.poetry]
name = "aim"
version = "0.1.0"
description = "A CLI for the AIM team"
authors = ["Monique Rio <[email protected]>", "David Fulmer <[email protected]>"]
readme = "README.md"
packages = [{include = "aim"}]
[tool.poetry.scripts]
aim = "aim.cli.main:app"
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.31.0"
sqlalchemy = "^2.0.34"
mysqlclient = "^2.2.4"
fastapi = {extras = ["standard"], version = "^0.114.2"}
httpx = "^0.27.2"
alembic = "^1.13.2"
typer = "^0.12.5"
boto3 = "^1.35.28"
rclone-python = "^0.1.12"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
pytest-cov = "^5.0.0"
ruff = "^0.6.6"
responses = "^0.25.3"
pytest-socket = "^0.7.0"
pytest-mock = "^3.14.0"
moto = {extras = ["s3"], version = "^5.0.15"}
sphinx = "^8.0.2"
sphinx-rtd-theme = "^3.0.0"
sphinx-autobuild = "^2024.10.3"
myst-parser = "^4.0.0"
sphinxcontrib-mermaid = "^0.9.2"
sphinx-toolbox = "^3.8.1"
[tool.pytest.ini_options]
addopts = "--cov=aim --cov-report=html --cov-report=term:skip-covered --disable-socket --allow-unix-socket"
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"