-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (57 loc) · 1.39 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
65
66
67
68
69
[tool.poetry]
name = "vodka"
version = "3.2.0.1"
description = "plugin based real-time web service daemon"
readme = "README.md"
repository = "https://github.com/20c/vodka"
authors = ["20C <code@20c.com>"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
]
packages = [
{ include = "vodka", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
click = "*"
munge = "^1"
pluginmgr = "^1"
tmpl = "^1"
[tool.poetry.dev-dependencies]
codecov = "^2"
coverage = "^4"
pytest-cov = ">=2.4.0,<3.0.0"
pytest = ">=5,<6"
tox = ">=3.8"
flask = ">=2,<3"
# linting
black = { version = ">=20", allow-prereleases = true }
# isort introduces a circular import somewhere when ran over vodka src
# isort = "^5.7.0"
flake8 = "^3.8.4"
pre-commit = "^2.13"
pyupgrade = "^2.19.4"
# ctl
ctl = "^1"
jinja2 = ">=2.11.2"
tmpl = "^1"
twine = "^3.3.0"
# docs
markdown = "*"
markdown-include = ">=0.5,<1"
mkdocs = "^1"
[tool.poetry.scripts]
bartender = "vodka.bartender:bartender"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3