Added update mechanism

This commit is contained in:
Ferry van Zeelst
2016-10-23 20:07:29 +00:00
parent ab4cd41abc
commit a04e47ffcf
2 changed files with 19 additions and 2 deletions

View File

@ -12,12 +12,12 @@ from setuptools import setup
setup(
name = 'python-synology',
packages = ['synology'], # this must be the same as the name above
version = '0.0.1',
version = '0.0.2',
description = 'Python API for communication with Synology DSM',
author = 'FG van Zeelst (StaticCube)',
author_email = 'GitHub@StaticCube.com',
url = 'https://github.com/StaticCube/python-synology/',
download_url = 'https://github.com/StaticCube/python-synology/tarball/0.0.1', # I'll explain this in a second
download_url = 'https://github.com/StaticCube/python-synology/tarball/0.0.2',
keywords = ['synology-dsm', 'synology'],
classifiers = [],
install_requires=['requests>=1.0.0']