forked from ldotlopez/ideenergy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
36 lines (31 loc) · 894 Bytes
/
setup.cfg
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
# https://packaging.python.org/tutorials/packaging-projects/
[metadata]
name = ideenergy
version = 1.0.1a0
author = Luis López
author_email = [email protected]
description = Interface to i-de.es energy data
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ldotlopez/ideenergy
project_urls =
Bug Tracker = https://github.com/ldotlopez/ideenergy/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
ideenergy = ideenergy
packages = find:
python_requires = >=3.9
install_requires =
aiohttp>=3.8.0, <4
[options.extras_require]
mqtt = paho-mqtt >= 1.6.1, <2
[options.packages.find]
where =
[options.entry_points]
console_scripts =
ideenergy = ideenergy.cli:main
ideenergy-mqtt = ideenergy.mqtt:main