-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
19 lines (18 loc) · 915 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(
name='socketcc',
packages=['socketcc'], # this must be the same as the name above
version='1.0',
description='Python client for socket-cluster (http://socketcluster.io)',
long_description='This is a refined fork of https://github.com/sacOO7/socketcluster-client-python',
author='Ramazan Polat',
author_email='[email protected]',
url='https://github.com/ramazanpolat/socketcc',
download_url='https://pypi.python.org/pypi/socketcc',
keywords=['socketcluster', 'socket-cluster', 'python3'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'],
)