-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (48 loc) · 1.33 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
58
59
60
61
62
63
64
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"
[tool.poetry]
name = "slow-start-rewatch"
version = "0.2.4"
description = "Make cute things happen!"
license = "MIT"
authors = []
readme = "README.md"
repository = "https://github.com/slow-start-fans/slow-start-rewatch"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.1.2"
importlib_metadata = "^1.6.0"
structlog = "^20.1.0"
colorama = "^0.4.3"
anyconfig = "^0.9.11"
flask = "^1.1.2"
praw = "^7.0.0"
"ruamel.yaml" = "^0.16.10"
scalpl = "^0.4.1"
[tool.poetry.dev-dependencies]
mypy = "^0.770"
wemake-python-styleguide = "^0.14.0"
flake8-pytest-style = "^1.1"
nitpick = "^0.22"
safety = "^1.9"
pytest = "^5.4"
pytest-cov = "^2.9"
pytest-randomly = "^3.3"
sphinx = "^2.2"
sphinx-autodoc-typehints = "<1.11"
doc8 = "^0.8"
m2r = "^0.2"
tomlkit = "^0.6"
autopep8 = "^1.5.2"
[tool.poetry.scripts]
slow-start-rewatch = "slow_start_rewatch.__main__:main"