We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33cbe22 commit 94440c4Copy full SHA for 94440c4
1 file changed
setup.py
@@ -1,15 +1,12 @@
1
from distutils.core import setup
2
3
-with open('README.rst', 'r', 'utf-8') as f:
4
- readme = f.read()
5
-
6
setup(
7
name = 'osdp',
8
packages = ['osdp'],
9
version = '0.4',
10
license='apache-2.0',
11
description = 'A Python control panel implementation of the Open Supervised Device Protocol (OSDP)',
12
- long_description = readme,
+ long_description = open('README.rst').read(),
13
author = 'Ryan Hu',
14
author_email = 'huzhiren@gmail.com',
15
url = 'https://github.com/ryanhz/osdp-python',
0 commit comments