diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..66302f0 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,12 @@ +CHANGELOG +######### + +This document describes changes between each past release. + + +0.1.0 (2015-09-03) +================== + +**Initial version** + +- A client to synchroneously call a Firefox Sync server. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..128b2ed --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include *.rst *requirements.txt tox.ini Makefile .coveragerc +recursive-include tests *.py diff --git a/setup.py b/setup.py index c3f52cc..266267b 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,9 @@ with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: README = f.read() +with codecs.open(os.path.join(here, 'CHANGELOG.rst'), encoding='utf-8') as f: + CHANGELOG = f.read() + REQUIREMENTS = [ 'PyFxA', 'requests', @@ -14,14 +17,17 @@ ] setup(name='syncclient', - version='0.0.1', + version='0.1.0', description='Firefox Sync client', - long_description=README, + long_description=README + '\n\n' + CHANGELOG, license='Apache License (2.0)', classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "License :: OSI Approved :: Apache Software License" @@ -29,7 +35,7 @@ keywords="web services", author='Mozilla Services', author_email='services-dev@mozilla.com', - url='', + url='https://github.com/mozilla-services/syncclient', packages=find_packages(), include_package_data=True, zip_safe=False,