We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b526b07 commit 33cbe22Copy full SHA for 33cbe22
1 file changed
setup.py
@@ -1,14 +1,19 @@
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'],
- version = '0.3',
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,
13
author = 'Ryan Hu',
14
author_email = 'huzhiren@gmail.com',
15
url = 'https://github.com/ryanhz/osdp-python',
- download_url = 'https://github.com/ryanhz/osdp-python/archive/v0.3-alpha.tar.gz',
16
+ download_url = 'https://github.com/ryanhz/osdp-python/archive/v0.4-alpha.tar.gz',
17
keywords = ['OSDP', 'Open Supervised Device Protocol', 'Access Control'],
18
install_requires=[
19
'pycryptodome',
0 commit comments