python-webfinger/setup.py

27 wiersze
888 B
Python

2013-11-02 21:26:48 +00:00
from setuptools 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"],
description="Simple Python implementation of WebFinger client protocol",
2012-04-04 22:19:42 +00:00
author="Jeremy Carbaugh",
author_email="jcarbaugh@gmail.com",
2012-04-04 22:19:42 +00:00
license='BSD',
url="http://github.com/jcarbaugh/python-webfinger/",
2012-04-04 22:19:42 +00:00
long_description=long_description,
install_requires=["requests"],
2012-04-04 22:19:42 +00:00
platforms=["any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
2012-04-04 22:19:42 +00:00
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)