-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (34 loc) · 1.56 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from distutils.core import setup
import pubmarine
setup(name="pubmarine",
version=pubmarine.__version__,
description="An event dispatcher based on the PubSub pattern for Python-3.5's asyncio",
long_description="""
This module implements an event dispatcher based on the publish-subscribe
pattern using asyncio. It is akin to the QT library's signals and slots
mechanism. Pubmarine's PubSub is intended for asynchronous signalling within
an application. It is not meant for communicating with other programs over
the network.
Read complete documentation at https://pubmarine.readthedocs.org/
""",
author="Toshio Kuratomi",
author_email="[email protected]",
maintainer="Toshio Kuratomi",
maintainer_email="[email protected]",
url="https://github.com/abadger/pubmarine",
license="Lesser GNU Public License v3+",
keywords='pubsub events',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['pubmarine'],
)