mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
12 lines
313 B
Python
12 lines
313 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='apiclient',
|
|
version='0.10',
|
|
description='Client for JSPN APIs',
|
|
author='Peter Linss',
|
|
author_email='peter.linss@hp.com',
|
|
url='http://github.com/plinss/apiclient/',
|
|
packages = ['apiclient']
|
|
)
|