-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
38 lines (33 loc) · 940 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
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
license = { text = "MIT" }
name = "pyess"
version = "0.1.23"
authors = [
{ name="gluap", email="[email protected]" },
]
description = "A small example package"
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Operating System :: OS Independent",
]
dependencies = [
'zeroconf', 'requests', 'graphyte', 'aiohttp', 'aiomqtt >=0.4.0, <2', 'ConfigArgParse'
]
[project.urls]
Homepage = "https://github.com/gluap/pyess"
Issues = "https://github.com/gluap/pyess/issues"
[project.optional-dependencies]
test = [
'tox', 'pytest'
]
[project.scripts]
esscli='pyess.cli:main'
essmqtt='pyess.essmqtt:main'