diff --git a/configure.ac b/configure.ac index 5892989..80b8306 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ # GNU General Public License for more details. define([VERSION_MAJOR], [1]) define([VERSION_MINOR], [2]) -define([VERSION_FIX], [2]) +define([VERSION_FIX], [3]) define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX) define([VERSION_SUFFIX], [_master]) diff --git a/setup.py b/setup.py index 6ed61f6..79257c7 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,16 @@ #!/usr/bin/env python from setuptools import setup, find_packages + +def readme(): + with open('README.rst') as desc: + return desc.read() + + setup(name='amcrest', - version='1.2.2', + version='1.2.3', description='Python wrapper implementation for Amcrest cameras.', + long_description=readme(), author='Douglas Schilling Landgraf, Marcelo Moreira de Mello', author_email='dougsland@gmail.com, tchello.mello@gmail.com', url='http://github.com/tchellomello/python-amcrest', diff --git a/setup.py.in b/setup.py.in index aaa6111..e770497 100644 --- a/setup.py.in +++ b/setup.py.in @@ -1,9 +1,16 @@ #!/usr/bin/env python from setuptools import setup, find_packages + +def readme(): + with open('README.rst') as desc: + return desc.read() + + setup(name='amcrest', version='@PACKAGE_RPM_VERSION@', description='Python wrapper implementation for Amcrest cameras.', + long_description=readme(), author='Douglas Schilling Landgraf, Marcelo Moreira de Mello', author_email='dougsland@gmail.com, tchello.mello@gmail.com', url='http://github.com/tchellomello/python-amcrest',