-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (31 loc) · 993 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·33 lines (31 loc) · 993 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
basicrpc
~~~~~
authors: Jude Nelson and Muneeb Ali
license: MIT, see LICENSE for more details.
"""
from setuptools import setup, find_packages
setup(
name='basicrpc',
version='0.0.2',
url='https://github.com/muneeb-ali/basicrpc',
license='MIT',
author='Jude Nelson and Muneeb Ali',
author_email='support@onename.com',
description='A very simple Python RPC client',
keywords='rpc client server netstring',
packages=find_packages(),
download_url='https://github.com/muneeb-ali/basicrpc/archive/master.zip',
zip_safe=False,
install_requires=[],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)