-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.37 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
[tool.poetry]
name = "hardwario-cloud"
version = "1.0.0"
description = "HARDWARIO CLOUD"
authors = ["Karel Blavka <karel.blavka@hardwario.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/hardwario/py-hardwario-cloud"
repository = "https://github.com/hardwario/py-hardwario-cloud"
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.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.scripts]
# cloud = "hardwario.chester.cli:main"
[tool.poetry.dependencies]
python = ">=3.7, <4"
click = "^8.1.3"
hardwario-common = "^1.8.0"
requests = "^2.28.2"
PyYAML = "^6.0"
loguru = "^0.6.0"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
#hardwario-common = {path = "../py-hardwario-common", develop = true}
pycodestyle = "^2.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"