forked from supakeen/pinnwand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.15 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
[tool.poetry]
name = "pinnwand"
version = "0.0.0"
description = "Straightforward pastebin software."
authors = ["supakeen <cmdr@supakeen.com>"]
license = "MIT"
readme = "README.rst"
keywords = ["pastebin"]
repository = "https://github.com/supakeen/pinnwand"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.6,<4"
tornado = "^6.0"
pygments = "^2.4"
sqlalchemy = "^1.3"
click = "^7.0"
docutils = "^0.16"
toml = "^0.10.0"
pygments-better-html = "^0.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
coverage = "^4.5"
black = { version = "*", allow-prereleases = true }
pytest-cov = "^2.8"
pre-commit = "^1.20"
flake8 = "^3.7"
mypy = "^0.740.0"
poetry-dynamic-versioning = "^0.3.0"
[tool.poetry-dynamic-versioning]
enable = true
[tool.black]
line-length = 80
target_version = ["py36"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.eggs
| \.mypy_cache
| \.tox
| venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry.scripts]
pinnwand = 'pinnwand.__main__:main'
[build-system]
requires = ["setuptools", "wheel"]