forked from slackroll/slackroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 871 Bytes
/
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
[tool.poetry]
name = "slackroll"
version = "53"
description = "Package or upgrade manager for Slackware Linux"
authors = ["Ricardo Garcia <[email protected]>", "Andrew Clemons <[email protected]>"]
license = "CC0 Public Domain Dedication"
[tool.poetry.dependencies]
future = "0.18.3"
python = "^2.7 || ^3.9"
[tool.poetry.dev-dependencies]
mock = [
{version = "3.0.5", python = "^2.7"}
]
pytest = [
{version = "~4.6", python = "^2.7"},
{version = "^7.1.2", python = "^3.9"}
]
pytest-cov = [
{version = "2.12.1", python = "^2.7"},
{version = "^4.0.0", python = "^3.9"}
]
more-itertools = {version = "~5.0", python = "^2.7"}
toml = "^0.10.2"
isort = "4.3.21"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pyright]
typeCheckingMode = "basic"
useLibraryCodeForTypes = true