-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
62 lines (57 loc) · 1.48 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
[tool.poetry]
name = "linguee-api"
version = "2.6.3"
description = "Linguee API"
readme = "README.md"
homepage = "https://github.com/imankulov/linguee-api"
repository = "https://github.com/imankulov/linguee-api"
authors = ["Roman Imankulov <[email protected]>"]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
include = [
"CHANGELOG.md",
"docs/linguee-api.png",
]
packages = [
{ include = "linguee_api" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.109.2"
pydantic = "^1"
xextract = "^0.1.8"
httpx = "^0.24.1"
uvicorn = "^0.22.0"
sentry-sdk = "^1.24.0"
python-dotenv = "^1.0.0"
loguru = "^0.7.0"
aiosqlite = "^0.19.0"
async-lru = "^2.0.2"
lxml = "^4.9.3"
[tool.poetry.group.dev.dependencies]
pytest = "^6.1.2"
pytest-xdist = "^2.2.1"
black = "^24.4.1"
flake8 = "^3.8.4"
coverage = "^5.4"
import-linter = "^1.2.1"
pytest-asyncio = "^0.14.0"
ipython = "^8.10.0"
click = "^8.1.7"
asgiref = "^3.3.4"
tox-poetry-installer = {extras = ["poetry"], version = "^0.10.2"}
bump2version = "^1.0.1"
[tool.coverage.run]
source = ["tests", "linguee_api"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"