-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
22 lines (21 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name='pypusu',
packages=['pypusu'], # this must be the same as the name above
version='1.0.2',
description='Python client for PuSuEngine',
author='Janne Enberg',
author_email='[email protected]',
url='https://github.com/PuSuEngine/pypusu',
download_url='https://github.com/PuSuEngine/pypusu/tarball/v1.0.2',
keywords=['pubsub', 'publisher', 'subscriber', 'messaging'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Communications :: Chat",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)