git.fiddlerwoaroof.com
setup.py
b728ba20
 from distutils.core import setup
 
b5b667ca
 VERSION = "0.99a01"
b728ba20
 URLBASE = "https://github.com/NCMI/jsonrpc"
 URLMAP = {
e54468ad
 	"daily": "tarball/master",
 	"0.99a01": "0.99a",
 	"0.99a02": "tarball/0.99a2",
b728ba20
 }
 
 if __name__ == "__main__":
 	setup(
 		name='jsonrpc',
 		version=VERSION,
 		description='A JSON-RPC 2.0 client-server library',
 		author='Edward Langley',
 		author_email='langleyedward@gmail.com',
 		url='https://github.com/NCMI/jsonrpc',
e54468ad
 		download_url=URLMAP.get(VERSION, URLMAP['daily']),
b728ba20
 		packages=[
 			'jsonrpc'
 			],
e54468ad
 		scripts=[],
 		license= 'BSD 2.0',
 		keywords = ['JSON', 'jsonrpc', 'rpc'],
 		classifiers = [
 			'Development Status :: 4 - Beta',
 			'Environment :: Web Environment',
 			'Framework :: Twisted',
 			'Intended Audience :: Developers',
 			'License :: OSI Approved :: BSD License',
 			'Operating System :: OS Independent',
 			'Programming Language :: Python :: 2.6',
 			'Programming Language :: Python :: 2.7',
 			'Topic :: Software Development :: Libraries :: Python Modules',
 		]
b728ba20
 		)