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

Commit

Permalink
Preparing release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Oct 6, 2015
1 parent 31eab25 commit 42d59e0
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 12 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.rst
Expand Up @@ -3,7 +3,15 @@ CHANGELOG

This document describes changes between each past release.

0.1.0 (unreleased)

1.0.0 (2015-10-06)
------------------

- No changes yet.
- First implementation of Syncto server.
- Connection with Token server and Sync servers.
- Encrypted credentials caching (#30, #31)
- Collections are Read-only by default
- Write permission on collection can be configured.
- Statsd monitoring for backends calls.
- Convert Syncto requests headers to Firefox Sync ones.
- Convert Firefox Sync headers to Syncto ones.
1 change: 0 additions & 1 deletion dev-requirements.txt
Expand Up @@ -6,4 +6,3 @@ requests
nose
nose-cov
nose-mocha-reporter
https://github.com/mozilla-services/cliquet/archive/master.zip
44 changes: 44 additions & 0 deletions requirements.txt
@@ -0,0 +1,44 @@
cffi==1.2.1
cliquet==2.8.0
colander==1.0
cornice==1.1.0
cryptography==1.0.2
dealer==2.0.4
enum34==1.0.4
hawkauthlib==0.1.1
hkdf==0.0.3
idna==2.0
ipaddress==1.0.14
iso8601==0.1.10
mohawk==0.3.0
ndg-httpsclient==0.4.0
newrelic==2.56.0.42
PasteDeploy==1.5.2
pyasn1==0.1.9
PyBrowserID==0.9.2
pycparser==2.14
PyFxA==0.0.9
PyNaCl==0.3.0
pyOpenSSL==0.15.1
pyramid==1.5.7
pyramid-multiauth==0.5.0
python-dateutil==2.4.2
raven==5.7.2
redis==2.10.3
repoze.lru==0.6
requests==2.8.0
requests-hawk==0.2.0
simplejson==3.8.0
six==1.9.0
statsd==3.1
structlog==15.3.0
syncclient==0.5.0
translationstring==1.3
ujson==1.33
venusian==1.0
waitress==0.8.10
WebOb==1.4.1
Werkzeug==0.10.4
wheel==0.24.0
zope.deprecation==4.1.2
zope.interface==4.1.3
22 changes: 13 additions & 9 deletions setup.py
Expand Up @@ -13,18 +13,18 @@


REQUIREMENTS = [
'waitress',
'cliquet[postgresql,monitoring]',
'hkdf',
'pynacl',
'syncclient',
'waitress==0.8.10',
'cliquet[monitoring]>=2.8,<2.9',
'hkdf==0.0.3',
'PyNaCl==0.3.0',
'syncclient==0.5.0',
]

if PY2:
REQUIREMENTS += [
"pyopenssl",
"ndg-httpsclient",
"pyasn1"
"pyopenssl==0.15.1",
"ndg-httpsclient==0.4.0",
"pyasn1==0.1.9"
]

ENTRY_POINTS = {
Expand All @@ -33,12 +33,16 @@
]}

setup(name='syncto',
version='1.0.0.dev0',
version='1.0.0',
description='Read Firefox Sync server using Kinto API.',
long_description=README + "\n\n" + CHANGELOG,
license='Apache License (2.0)',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: Apache Software License"
Expand Down

0 comments on commit 42d59e0

Please sign in to comment.