27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
|
from distutils.core import setup
|
||
|
from disqus import __version__,__license__,__doc__
|
||
|
|
||
|
license_text = open('LICENSE').read()
|
||
|
long_description = open('README.rst').read()
|
||
|
|
||
|
setup(name="python-disqus",
|
||
|
version=__version__,
|
||
|
py_modules=["disqus"],
|
||
|
description="Libraries for interacting with the Disqus API",
|
||
|
author="James Turk",
|
||
|
author_email = "james.p.turk@gmail.com",
|
||
|
license=license_text,
|
||
|
url="http://github.com/jamesturk/python-disqus/",
|
||
|
long_description=long_description,
|
||
|
platforms=["any"],
|
||
|
classifiers=["Development Status :: 3 - Alpha",
|
||
|
"Intended Audience :: Developers",
|
||
|
"License :: OSI Approved :: BSD License",
|
||
|
"Natural Language :: English",
|
||
|
"Operating System :: OS Independent",
|
||
|
"Programming Language :: Python",
|
||
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||
|
],
|
||
|
install_requires=["simplejson >= 1.8"]
|
||
|
)
|