forked from chris-piekarski/python-json-socket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 857 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='jsocket',
version='1.6',
description='Python JSON Server & Client',
author='Christopher Piekarski',
author_email='chris@cpiekarski.com',
maintainer='Christopher Piekarski',
maintainer_email='chris@cpiekarski.com',
license='OSI Approved Apache Software License',
keywords=['json','socket','server','client'],
packages=['jsocket'],
provides=['jsocket'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
],
url='http://cpiekarski.com/2011/05/09/super-easy-python-json-client-server/'
)