setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. pip setup file
  5. """
  6. from setuptools import setup
  7. __library__ = "bucketstore"
  8. __version__ = "VERSION"
  9. __user__ = "https://github.com/jpetrucciani"
  10. with open("README.md", encoding="UTF-8") as readme:
  11. LONG_DESCRIPTION = readme.read()
  12. REQUIRED = ["boto3"]
  13. setup(
  14. name=__library__,
  15. version=__version__,
  16. description="A simple library for interacting with Amazon S3.",
  17. long_description=LONG_DESCRIPTION,
  18. long_description_content_type="text/markdown",
  19. author="Kenneth Reitz, Jacobi Petrucciani",
  20. author_email="j@cobi.dev",
  21. url=f"{__user__}/{__library__}.git",
  22. download_url=f"{__user__}/{__library__}.git",
  23. py_modules=[__library__],
  24. install_requires=REQUIRED,
  25. license="MIT",
  26. classifiers=[
  27. "Programming Language :: Python",
  28. "Programming Language :: Python :: 3",
  29. "Programming Language :: Python :: 3.6",
  30. "Programming Language :: Python :: 3.7",
  31. "Programming Language :: Python :: 3.8",
  32. "Programming Language :: Python :: 3.9",
  33. "Programming Language :: Python :: 3.10",
  34. "Programming Language :: Python :: Implementation :: CPython",
  35. "Programming Language :: Python :: Implementation :: PyPy",
  36. ],
  37. )