git.fiddlerwoaroof.com
setup.py
b728ba20
 from distutils.core import setup
 
83ad7381
 VERSION = "1.2"
b728ba20
 URLBASE = "https://github.com/NCMI/jsonrpc"
 URLMAP = {
7329784f
 	"daily": "tarball/master",
09f3cd17
 	"0.99a01": "tarball/0.99a",
 	"0.99a02": "tarball/0.99a02",
83ad7381
 	"1.1": "tarball/1.1",
 	"1.2": "tarball/1.2",
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',
09f3cd17
 		url=URLBASE,
 		download_url='/'.join([URLBASE, URLMAP.get(VERSION, URLMAP['daily'])]),
b728ba20
 		packages=[
 			'jsonrpc'
 			],
7329784f
 		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
 		)