setup.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import os
  2. import codecs
  3. from setuptools import setup, find_packages
  4. here = os.path.abspath(os.path.dirname(__file__))
  5. with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
  6. long_description = "\n" + fh.read()
  7. VERSION = '0.0.1'
  8. DESCRIPTION = 'Simple command line utility to run Bjoern WSGI'
  9. LONG_DESCRIPTION = DESCRIPTION
  10. # Setting up
  11. setup(
  12. name="bjcli",
  13. version=VERSION,
  14. author="Kapustlo",
  15. author_email="<kapustlo@protonmail.com>",
  16. description=DESCRIPTION,
  17. ur="https://notabug.org/kapustlo/bjcli",
  18. long_description_content_type="text/markdown",
  19. long_description=long_description,
  20. packages=find_packages(),
  21. keywords=['python', 'bjoern', 'cli', 'bjoern-cli', 'wsgi'],
  22. classifiers=[
  23. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  24. "Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
  25. "Environment :: Console",
  26. "Environment :: Web Environment",
  27. "Development Status :: 4 - Beta",
  28. "Intended Audience :: Developers",
  29. "Programming Language :: Python :: 3",
  30. "Operating System :: Unix",
  31. ],
  32. python_requires=">=3.8"
  33. )