Skip to content

Commit

Permalink
Prepare a pip release.
Browse files Browse the repository at this point in the history
  • Loading branch information
GendoIkari committed Feb 3, 2017
1 parent 4c9cabf commit b6e0a7e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
gunicorn
flask
requests
pika
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from distutils.core import setup

setup(
name = 'pymicro',
packages = ['pymicro'],
version = '0.0.1',
description = 'An easy to use python3 package to create and use microservices.',
author = 'Daniele Maccioni',
author_email = '[email protected]',
url = 'https://github.com/GendoIkari/pymicro',
download_url = 'https://github.com/GendoIkari/pymicro/tarball/v0.0.1',
keywords = ['microservices', 'rabbitmq', 'service'],
classifiers = [],
install_requires=['flask', 'requests', 'pika'],
)

0 comments on commit b6e0a7e

Please sign in to comment.