We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4527467 commit 63fd061Copy full SHA for 63fd061
setup.py
@@ -1,11 +1,17 @@
1
from setuptools import setup, find_packages
2
3
+with open("README.md", 'r') as f:
4
+ long_description = f.read()
5
+
6
setup(
7
name='comwatt-client-legacy',
- version='0.1',
8
+ version='0.1.2',
9
author='Matéo Greil',
10
author_email='contact@greil.fr',
- description='Python Client for Comwatt API',
11
+ description='Python Client for Comwatt API (legacy: go.energy.comwatt)',
12
+ long_description=long_description,
13
+ long_description_content_type='text/markdown',
14
+ url="https://github.com/MateoGreil/python-comwatt-client-legacy",
15
packages=find_packages(),
16
install_requires=[
17
'requests',
0 commit comments