Skip to content

Commit

Permalink
Prepare first public release
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Recouvreux committed May 19, 2014
1 parent 66c3187 commit e2acbf0
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 5 deletions.
6 changes: 6 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BSD LICENSE
13 changes: 13 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion release.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ python_name = aioamqp
path = aioamqp/version.py
version_variable = __version__
requirements = requirements.txt

no_upload = true
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@
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',
],
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",
Expand Down

0 comments on commit e2acbf0

Please sign in to comment.