python-webfinger/setup.py

27 wiersze
874 B
Python
Czysty Zwykły widok Historia

2012-04-04 22:19:42 +00:00
from distutils.core import setup
from webfinger import __version__
2012-04-04 22:19:42 +00:00
long_description = open('README.rst').read()
setup(name="webfinger",
2012-04-04 22:19:42 +00:00
version=str(__version__),
py_modules=["webfinger"],
2012-04-04 22:19:42 +00:00
description="Simple Python implementation of webfinger client protocol",
author="Jeremy Carbaugh",
author_email="jcarbaugh@gmail.com",
2012-04-04 22:19:42 +00:00
license='BSD',
url="http://github.com/jcarbaugh/webfinger/",
2012-04-04 22:19:42 +00:00
long_description=long_description,
install_requires=["python-xrd"],
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)