forked from c-soft/satel_integra
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.4 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
[tool]
[tool.poetry]
name = "satel_integra2"
version = "0.4.2"
homepage = "https://github.com/wasilukm/satel_integra2"
description = "Communication library and basic testing tool for Satel Integra alarm system."
authors = []
readme = "README.rst"
license = "MIT"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
packages = [
{ include = "satel_integra2" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
cryptography = "*"
click = {version = "^8.1.3", python = ">=3.8,<4.0"}
pytest-cov = {version = "^4.0.0", optional = true}
pytest = {version = "^7.2.0", optional = true}
tox = {version = "^3.27.0", optional = true}
twine = {version = "^4.0.1", optional = true}
toml = {version = "^0.10.2", optional = true}
bump2version = {version = "^1.0.1", optional = true}
flake8 = {version = "^5.0.4", optional = true}
[tool.poetry.extras]
test = [
"pytest",
"pytest-cov",
"flake8"
]
dev = [
"tox",
"twine",
"toml",
"bump2version"
]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"