-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
29 lines (27 loc) · 1.22 KB
/
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
28
29
#!/usr/bin/env python
from setuptools import setup, Extension
setup(name='jsocket',
version='1.9.3',
description='Python JSON Server & Client',
author='Christopher Piekarski',
author_email='[email protected]',
maintainer='Christopher Piekarski',
maintainer_email='[email protected]',
license='OSI Approved Apache Software License',
keywords=['json','socket','server','client'],
packages=['jsocket'],
provides=['jsocket'],
python_requires='>=3.8',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Hardware :: Symmetric Multi-processing',
],
url='https://cpiekarski.com/2012/01/25/python-json-client-server-redux/'
)