1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="muttdown",
version="0.4.0",
author="James Brown",
author_email="roguelazer@roguelazer.com",
url="https://github.com/Roguelazer/muttdown",
license="ISC",
packages=find_packages(exclude=["tests"]),
keywords=["email"],
description="Sendmail replacement that compiles markdown into HTML",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"Markdown>=3.0,<4.0",
"PyYAML>=3.0",
"pynliner==0.8.0",
],
entry_points={
"console_scripts": [
"muttdown = muttdown.main:main",
]
},
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"License :: OSI Approved :: ISC License (ISCL)",
"Topic :: Communications :: Email",
],
)
|