-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
57 lines (53 loc) · 1.06 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 = "steck"
version = "0.8.0-dev"
description = "Client for pinnwand pastebin."
authors = ["supakeen <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["pastebin"]
repository = "https://github.com/supakeen/steck"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
click = ">=8.0"
requests = "^2.31.0"
python-magic = "^0.4.15"
termcolor = "^2.3.0"
appdirs = "^1.4.3"
toml = "^0.10.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4"
coverage = "^7.3"
black = { version = "*", allow-prereleases = true }
pytest-cov = "^4.1"
pre-commit = "^3.3"
flake8 = "^6.1"
mypy = "^1.5.1"
[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]
steck = 'steck:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"