Skip to content

Commit 2784780

Browse files
Update setup.py (#12)
* Update setup.py * Create MANIFEST.in
1 parent a9ea7e2 commit 2784780

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include License.txt

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
from setuptools import setup
22

3+
long_description = None
4+
with open("README.md", 'r') as fp:
5+
long_description = fp.read()
6+
37
setup(
48
name = 'pyTibber',
59
packages = ['Tibber'],
610
install_requires=['gql==0.1.0', 'aiohttp==2.2.5', 'async_timeout==1.4.0'],
7-
version = '0.1.1',
8-
description = 'A python3 library to communicate with Tibber',
11+
version='0.1.1',
12+
description='A python3 library to communicate with Tibber',
13+
long_description=long_description,
914
author='Daniel Hoyer Iversen',
1015
author_email='mail@dahoiv.net',
1116
url='https://github.com/Danielhiversen/pyTibber',
17+
license="MIT",
1218
classifiers=[
1319
'Intended Audience :: Developers',
1420
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)