File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 11from distutils .core import setup
2+
3+ with open ('README.rst' , 'r' , 'utf-8' ) as f :
4+ readme = f .read ()
5+
26setup (
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' ,
You can’t perform that action at this time.
0 commit comments