forked from DeepLcom/deepl-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.36 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
[tool.black]
line-length = 79
[tool.poetry]
name = "deepl"
version = "1.11.0"
description = "Python library for the DeepL API."
authors = ["DeepL SE <[email protected]>"]
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",
]
include = [
"CHANGELOG.md",
"LICENSE",
"SECURITY.md",
]
[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.6.2,<4"
requests = "^2"
[tool.poetry.dev-dependencies]
black = "^21.4b2"
pytest = "^6.2.3"
pydantic = "^1.8.1"
coverage = "^5.5"
tox = "^3.23.1"
flake8 = "^3.9.2"
[tool.poetry.scripts]
deepl = "deepl.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"