mkv-this/setup.py

30 lines
983 B
Python
Raw Permalink Normal View History

2020-04-19 19:57:13 +02:00
from setuptools import setup, find_packages
# read the contents of your README file as long_description:
from os import path
2020-04-26 22:13:31 +02:00
2020-04-19 19:57:13 +02:00
this_directory = path.abspath(path.dirname(__file__))
2020-04-26 22:13:31 +02:00
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
2020-04-19 19:57:13 +02:00
long_description = f.read()
2020-04-26 03:55:43 +02:00
2020-04-26 22:13:31 +02:00
setup(
name="mkv-this",
2020-04-30 22:17:19 +02:00
version="0.2.5",
description="cli wrapper for markovify: take a text file, directory, pdf or url, markovify, save the results.",
2020-04-26 22:13:31 +02:00
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.disroot.org/mousebot/mkv-this",
author="mousebot",
author_email="martianhiatus@riseup.net",
license="AGPLv3",
packages=find_packages(),
entry_points={
"console_scripts": [
"mkv-this = mkv_this.mkv_this:main",
"mkv-this-dir = mkv_this.mkv_this_dir:main",
]
},
2020-04-30 22:17:19 +02:00
install_requires=["markovify", "argparse", "html2text", "requests",],
2020-04-26 22:13:31 +02:00
zip_safe=False,
2020-04-19 19:57:13 +02:00
)