-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.32 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
[tool.poetry]
name = "maru"
version = "0.2.0"
description = "Morphological Analyzer for Russian 💬"
license = "MIT"
authors = ["Vladislav Blinov <cunningplan@yandex.ru>"]
repository = "https://github.com/chomechome/maru"
readme = "README.rst"
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "^3.6"
numpy = ">=1.15.0"
pymorphy2 = { version = ">=0.8", extras = [ "fast" ] }
scipy = ">=1.1.0"
keras = ">=2.2.2"
tensorflow = { version = ">=1.14.0", optional = true }
python-crfsuite = ">=0.9.5"
lru-dict = ">=1.1.6"
tensorflow-gpu = { version = ">=1.14.0", optional = true }
joblib = ">=0.11.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2.2"
pytest-cov = "^2.8.1"
mypy = "^0.740"
flake8 = "^3.7.9"
flake8-isort = "^2.7.0"
flake8-builtins = "^1.4.1"
flake8-comprehensions = "^3.0.1"
flake8-debugger = "^3.2.1"
flake8-eradicate = "^0.2.3"
flake8-pytest = "^1.3"
pep8-naming = "^0.9.0"
hypothesis = "^4.44.2"
black = "^19.10b0"
isort = "^4.3.21"
unify = "^0.5"
pylint = "^2.4.3"
codecov = "^2.0.15"
[tool.poetry.extras]
gpu = ["tensorflow-gpu"]
tf = ["tensorflow"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"