Files
anyjson/setup.py
T
2009-07-05 00:11:51 +02:00

24 lines
635 B
Python

from setuptools import setup
import anyjson
author, email = anyjson.__author__[:-1].split(' <')
setup(name='anyjson',
version=anyjson.__version__,
description=anyjson.__doc__,
long_description=open("README").read(),
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python'
],
keywords='json',
author=author,
author_email=email,
url='http://bitbucket.org/runeh/anyjson',
license='BSD',
py_modules=['anyjson'],
zip_safe=False,
platforms=["any"],
)