setup.py 888 B

123456789101112131415161718192021222324252627
  1. from setuptools import setup
  2. from webfinger import __version__
  3. long_description = open('README.rst').read()
  4. setup(name="webfinger",
  5. version=str(__version__),
  6. py_modules=["webfinger"],
  7. description="Simple Python implementation of WebFinger client protocol",
  8. author="Jeremy Carbaugh",
  9. author_email="jcarbaugh@gmail.com",
  10. license='BSD',
  11. url="http://github.com/jcarbaugh/python-webfinger/",
  12. long_description=long_description,
  13. install_requires=["requests"],
  14. platforms=["any"],
  15. classifiers=[
  16. "Development Status :: 5 - Production/Stable",
  17. "Intended Audience :: Developers",
  18. "License :: OSI Approved :: BSD License",
  19. "Natural Language :: English",
  20. "Operating System :: OS Independent",
  21. "Programming Language :: Python",
  22. "Topic :: Software Development :: Libraries :: Python Modules",
  23. ],
  24. )