from distutils.core import setup setup( name='murl', version='0.5', description='murl is a tiny wrapper for the Python module urlparse.', long_description='description', author='Berker Peksag', author_email='spam@gmail.com', url='https://github.com/berkerpeksag/murl', py_modules=['murl'], platforms='any', license='Mozilla Public License, v. 2.0', classifiers=( 'Development Status :: 5 - Production/Stable', 'Topic :: Internet :: WWW/HTTP', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', ), )