You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
524 B
19 lines
524 B
#!/usr/bin/env python3 |
|
from setuptools import setup |
|
|
|
from msgbus import __version__ |
|
|
|
setup(name='msgbus', |
|
version=__version__, |
|
description='pubsub communication tools', |
|
url='http://gitlab.xmopx.net/dave/pymsgbus', |
|
author='dpedu', |
|
author_email='dave@davepedu.com', |
|
packages=['msgbus'], |
|
entry_points={ |
|
"console_scripts": [ |
|
"mbusd = msgbus.server:main", |
|
"mbuspub = msgbus.pub:main", |
|
"mbussub = msgbus.sub:main", |
|
] |
|
})
|
|
|