setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. from setuptools import setup, find_packages
  2. import versioneer
  3. with open("README.md", "r") as f:
  4. long_description = f.read()
  5. setup(
  6. name="redmail",
  7. version=versioneer.get_version(),
  8. cmdclass=versioneer.get_cmdclass(),
  9. author="Mikael Koli",
  10. author_email="koli.mikael@gmail.com",
  11. url="https://github.com/Miksus/red-mail.git",
  12. package_data={package: ["py.typed", "*.pyi", "**/*.pyi"] for package in find_packages()},
  13. packages=find_packages(),
  14. zip_safe=False,
  15. description="Email sending library",
  16. long_description=long_description,
  17. long_description_content_type="text/markdown",
  18. classifiers=[
  19. "Topic :: Communications :: Email",
  20. "Operating System :: OS Independent",
  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. "Programming Language :: Python :: 3.10",
  28. "Programming Language :: Python :: 3.11",
  29. "Intended Audience :: Developers",
  30. "Intended Audience :: Customer Service",
  31. "Intended Audience :: Financial and Insurance Industry",
  32. ],
  33. include_package_data=True, # for MANIFEST.in
  34. python_requires='>=3.6.0',
  35. install_requires = [
  36. 'jinja2',
  37. ],
  38. )