forked from mgruner/deepl-api-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (25 loc) · 862 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
[tool.poetry]
name = "deepl-api"
version = "0.2.2"
description = "Bindings and a commandline tool for the DeepL REST API (https://www.deepl.com/docs-api/)"
authors = ["Martin Gruner <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mgruner/deepl-api-py/"
documentation = "https://mgruner.github.io/deepl-api-py-docs/deepl_api/index.html"
keywords = ["deepl", "api", "translation", "ai", "machine-learning"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.25.1"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pdoc3 = "^0.9.2"
black = "^20.8b1"
[tool.poetry.scripts]
deepl = 'deepl_api.cli:run'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Rebuild docs
# pdoc3 --html -o doc deepl_api -f