forked from kantord/LibreLingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.07 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
[tool.poetry]
name = "librelingo"
version = "0.1.0"
description = ""
authors = ["Dániel Kántor <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
mkdocs-mermaid2-plugin = "^0.5.1"
[tool.poetry.dev-dependencies]
librelingo-yaml-loader = { path = "./apps/librelingo_yaml_loader/", develop = true }
librelingo-json-export = { path = "./apps/librelingo_json_export", develop = true }
librelingo-fakes = { path = "./apps/librelingo_fakes", develop = true }
librelingo-utils = { path = "./apps/librelingo_utils", develop = true }
librelingo-audios = { path = "./apps/librelingo_audios", develop = true }
librelingo-types = { path = "./apps/librelingo_types", develop = true }
pytest = "^6.2.2"
pytest-mock = "^3.5.1"
pytest-watch = "^4.2.0"
mkdocs-material = "^8.0.0"
mkdocs = "^1.2.3"
black = "^21.6b0"
mypy = "^0.930"
types-python-slugify = "^5.0.0"
types-PyYAML = "^6.0.0"
types-bleach = "^4.0.0"
types-Markdown = "^3.3.0"
pylint = "^2.12.2"
autopep8 = "^1.6.0"
yapf = "^0.31.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"