We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8558e0 commit cbab292Copy full SHA for cbab292
1 file changed
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',
8
version='0.2.1',
9
author='Matéo Greil',
10
author_email='contact@greil.fr',
11
description='Python Client for Comwatt API',
12
+ long_description=long_description,
13
+ long_description_content_type='text/markdown',
14
+ url="https://github.com/MateoGreil/python-comwatt-client",
15
packages=find_packages(),
16
install_requires=[
17
'requests',
0 commit comments