Skip to content

Commit 5f37e1f

Browse files
committed
added setup.py
1 parent 598414f commit 5f37e1f

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name = 'moleculer',
5+
packages = ['moleculer'], # this must be the same as the name above
6+
version = '0.1',
7+
description = 'Moleculer node and client for amqp with json serializer',
8+
author = 'Andrei Khaliaukin',
9+
author_email = 'endpoo@gmail.com',
10+
url = 'https://github.com/ToGoBananas/moleculer-python', # use the URL to the github repo
11+
download_url = 'https://github.com/ToGoBananas/moleculer-python/archive/0.1.tar.gz', # I'll explain this in a second
12+
keywords = ['moleculer', 'microservices'], # arbitrary keywords
13+
classifiers = [],
14+
)

0 commit comments

Comments
 (0)