Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

Commit

Permalink
Preparing release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Sep 3, 2015
1 parent f51cb3a commit 2accf96
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include *.rst *requirements.txt tox.ini Makefile .coveragerc
recursive-include tests *.py
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,35 @@
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',
'requests-hawk',
]

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"
],
keywords="web services",
author='Mozilla Services',
author_email='[email protected]',
url='',
url='https://github.com/mozilla-services/syncclient',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 2accf96

Please sign in to comment.