-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.44 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
[tool.black]
line-length = 79
[tool.poetry]
name = "deepl"
version = "1.28.0"
description = "Python library for the DeepL API."
authors = ["DeepL SE <python-api@deepl.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/DeepLcom/deepl-python"
documentation = "https://www.deepl.com/docs-api/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
# Note: although poetry automatically creates the Python version trove
# classifiers, the 3.6 one will be missing because we specify >=3.6.2
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/DeepLcom/deepl-python/issues"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "tests/*"]
[tool.coverage.report]
fail_under = 70
[tool.poetry.dependencies]
python = ">=3.9,<4"
requests = ">=2.32.5"
keyring = {version = "^25.7.0", optional = true}
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
pydantic = "^1.8.1"
flake8 = "^7.3.0"
mypy = "^1.17.1"
pytest = "^8.4.2"
coverage = "^7.10.6"
[tool.poetry.extras]
keyring = ["keyring"]
[tool.poetry.scripts]
deepl = "deepl.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"