-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (46 loc) · 1.49 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
[tool.poetry]
name = "hardwario"
version = "1.0.0"
description = "HARDWARIO Command Line Tool"
authors = ["Karel Blavka <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/hardwario/py-hardwario"
repository = "https://github.com/hardwario/py-hardwario"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Environment :: Console"
]
packages = [
{ include = "hardwario", from = "src" },
]
exclude = [
"**/*.pyc",
"**/*.pyi",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.7, <4"
hardwario-chester = ">=v1.25.0"
hardwario-cloud = ">=1.5.0"
[tool.poetry.dev-dependencies]
#hardwario-common = {path = "../py-hardwario-common", develop = true}
#hardwario-chester = {path = "../py-hardwario-chester", develop = true}
#hardwario-cloud = {path = "../py-hardwario-cloud", develop = true}
#hardwario-tower = {path = "../py-hardwario-tower", develop = true}
pycodestyle = "^2.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"