-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1004 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
43
44
45
46
47
[tool.poetry]
name = "oly-pythonlib"
version = "0.1.0"
description = "Python libraries for Oly"
authors = ["George Mathews <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.8.2"
pycryptodome = "^3.20.0"
cryptography = "^42.0.8"
fastapi = "^0.111.0"
deepmerge = "^1.1.1"
pandas = "^2.2.2"
gspread = "^6.0.0"
gspread-asyncio = "^2.0.0"
pyjwt = "^2.8.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
ruff = "^0.5.1"
pytest = "^8.2.2"
mypy = "^1.10.1"
types-pyyaml = "^6.0.12.20240311"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
exclude = "^(.*\\.md|.*\\.yaml|.*\\.lock|.*\\.ini)$"
[tool.ruff]
extend-exclude = ["*.yaml", "poetry.lock", "pyproject.toml", "README.md"]
line-length = 120
[tool.pytest.ini_options]
asyncio_mode = "auto"