setup.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. from setuptools import setup
  2. from codecs import open
  3. from os import path
  4. here = path.abspath(path.dirname(__file__))
  5. __version__ = "0.0.84"
  6. with open(path.join(here, "README.md"), encoding="utf-8") as f:
  7. long_description = f.read()
  8. setup(
  9. name="disposable-email-domains",
  10. version=__version__,
  11. description="A set of disposable email domains",
  12. long_description=long_description,
  13. long_description_content_type="text/markdown",
  14. url="https://github.com/disposable-email-domains/disposable-email-domains",
  15. author="Dustin Ingram",
  16. author_email="github@dustingram.com",
  17. license="MIT",
  18. classifiers=[
  19. "Development Status :: 3 - Alpha",
  20. "Intended Audience :: Developers",
  21. "License :: OSI Approved :: MIT License",
  22. "Programming Language :: Python :: 3",
  23. "Programming Language :: Python :: 3.6",
  24. "Programming Language :: Python :: 3.7",
  25. "Programming Language :: Python :: 3.8",
  26. "Programming Language :: Python :: 3.9",
  27. ],
  28. keywords="disposable email domains blocklist",
  29. packages=["disposable_email_domains"],
  30. extras_require={
  31. "dev": ["check-manifest"],
  32. },
  33. )