forked from rsocket/rsocket-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 849 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
23
24
25
26
27
from setuptools import setup
setup(
name='rsocket',
version='0.2.0',
description='Python RSocket library',
url='https://github.com/RSocket/rsocket-py',
author='Vijayan Rajan',
author_email='',
license='MIT',
packages=[
'rsocket',
'reactivestreams'
],
zip_safe=True,
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
])