Skip to content

Commit 33cbe22

Browse files
committed
Release v0.4-alpha
1 parent b526b07 commit 33cbe22

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
from distutils.core import setup
2+
3+
with open('README.rst', 'r', 'utf-8') as f:
4+
readme = f.read()
5+
26
setup(
37
name = 'osdp',
48
packages = ['osdp'],
5-
version = '0.3',
9+
version = '0.4',
610
license='apache-2.0',
711
description = 'A Python control panel implementation of the Open Supervised Device Protocol (OSDP)',
12+
long_description = readme,
813
author = 'Ryan Hu',
914
author_email = 'huzhiren@gmail.com',
1015
url = 'https://github.com/ryanhz/osdp-python',
11-
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',
1217
keywords = ['OSDP', 'Open Supervised Device Protocol', 'Access Control'],
1318
install_requires=[
1419
'pycryptodome',

0 commit comments

Comments
 (0)