setup.py 926 B

123456789101112131415161718192021222324252627
  1. from setuptools import setup
  2. from webfinger import __version__
  3. long_description = open('README.rst').read()
  4. setup(name="hostmeta",
  5. version=str(__version__),
  6. py_modules=["hostmeta"],
  7. description="Simple Python implementation of Web Host Metadata protocol",
  8. author="Mikael Nordfeldth",
  9. author_email="mmn@hethane.se",
  10. license='AGPLv3+',
  11. url="https://notabug.org/mmn/python-hostmeta",
  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 :: GNU Affero General Public License v3 or later (AGPLv3+)",
  19. "Natural Language :: English",
  20. "Operating System :: OS Independent",
  21. "Programming Language :: Python",
  22. "Topic :: Software Development :: Libraries :: Python Modules",
  23. ],
  24. )