-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (43 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
[tool.poetry]
name = "device-drama"
version = "24.5.13"
description = "Device-Drama - Linux Fetch Tool"
authors = ["Tadeusz Miszczyk <42252259+8tm@users.noreply.github.com>"]
homepage = "http://github.com/8tm/device-drama"
documentation = "https://test.pypi.org/project/device-drama"
repository = "http://github.com/8tm/device-drama"
readme = "README.md"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Unix",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
[tool.poetry.dev-dependencies]
autopep8 = '^2.0.2'
flake8 = "^6.0.0"
flake8-colors = "^0.1.9"
flake8-commas = "^2.1.0"
flake8-import-order = "^0.18.2"
flake8-quotes = "^3.3.0"
mypy = "^1.0.1"
pylint = "^2.5.0"
pytest = "^7.2.0"
pytest-cov = "^2.10.1"
pytest-mock = "^3.10.0"
pytest-xdist = "^1.29.0"
pytest-parallel = "^0.1.1"
pre-commit = '^3.4.0'
[tool.poetry.scripts]
device-drama = 'device_drama.main:main'
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"