-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
57 lines (51 loc) · 1.29 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
56
57
[tool.poetry]
name = "xbot"
version = "0.1.0"
description = ""
authors = ["zhangchunyang <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
click = "^7.1.2"
pytype = {version = "^2020.12.2", python = "3.8"}
importlib-metadata = {version = "^3.1.1", python = "<3.8"}
colorama = "^0.4.4"
"ruamel.yaml" = "^0.16.12"
coloredlogs = "^15.0"
torch = "^1.7.1"
transformers = "^4.1.1"
tensorboard = "^2.4.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
coverage = {extras = ["toml"], version = "^5.3"}
pytest-cov = "^2.10.1"
black = "^20.8b1"
flake8 = "^3.8.4"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.1"
flake8-bugbear = "^20.11.1"
flake8-import-order = "^0.18.1"
safety = "^1.9.0"
mypy = "^0.790"
pytype = {version = "^2020.12.2", python = "3.8"}
typeguard = "^2.10.0"
flake8-annotations = "^2.4.1"
flake8-docstrings = "^1.5.0"
darglint = "^1.5.8"
xdoctest = "^0.15.0"
Sphinx = "^3.3.1"
sphinx-autodoc-typehints = "^1.11.1"
codecov = "^2.1.10"
pre-commit = "^2.9.3"
pydoc-markdown = "^3.9.0"
pytest-timeout = "^1.4.2"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.poetry.scripts]
xbot = "xbot.cli:main"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]