From e2acbf0b304ecf62eb69e8bb17d556153de3ddf3 Mon Sep 17 00:00:00 2001 From: Thomas Recouvreux Date: Mon, 19 May 2014 16:13:51 +0200 Subject: [PATCH] Prepare first public release --- AUTHORS.rst | 6 ++++++ CHANGES.rst | 10 ++++++++++ LICENSE | 1 + MANIFEST.in | 13 +++++++++++++ release.conf | 2 +- setup.py | 7 +++---- 6 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 AUTHORS.rst create mode 100644 CHANGES.rst create mode 100644 LICENSE create mode 100644 MANIFEST.in diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..03f4e1c --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,6 @@ +aioamqp was originally created in early 2014 at Polyconseil. + +The PRIMARY AUTHORS are (and/or have been): + + * Benoît Calvez + * Thomas Recouvreux diff --git a/CHANGES.rst b/CHANGES.rst new file mode 100644 index 0000000..3c71dc8 --- /dev/null +++ b/CHANGES.rst @@ -0,0 +1,10 @@ +aiodaemon changelog +=================== + +Here you can see the full list of changes between each aiodaemon release. + + +Version 0.1 +----------- + +First public preview release. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f2ee8ca --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +BSD LICENSE diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..83f69e8 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,13 @@ +include README.rst +include CHANGES.rst +include LICENSE +include AUTHORS.rst + +recursive-include docs * +recursive-include examples *.py + +recursive-exclude * *.pyc +recursive-exclude * *.pyo +recursive-exclude * *.swp + +prune docs/_build diff --git a/release.conf b/release.conf index 5e4bddf..e3d2244 100644 --- a/release.conf +++ b/release.conf @@ -4,4 +4,4 @@ python_name = aioamqp path = aioamqp/version.py version_variable = __version__ requirements = requirements.txt - +no_upload = true diff --git a/setup.py b/setup.py index 2feb20f..48ddc56 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,11 @@ setuptools.setup( name=PACKAGE_NAME, version=VERSION, - author='Benoît Calvez', - author_email='benoit.calvez@polyconseil.fr', + author="Polyconseil dev' team", + author_email='opensource+aioamqp@polyconseil', url='https://github.com/polyconseil/aioamqp', description=description, - long_description=description, + long_description=open('README.rst').read(), download_url='https://pypi.python.org/pypi/aioamqp', packages=[ 'aioamqp', @@ -26,7 +26,6 @@ install_requires=['asyncio'] if py_version <= (3, 3) else [], classifiers=[ "Development Status :: 4 - Beta", - "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent",