mkv-this/setup.py

34 lines
1.0 KiB
Python
Raw 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
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
2020-04-26 03:55:43 +02:00
2020-04-19 19:57:13 +02:00
setup(name='mkv-this',
version='0.1.43',
2020-04-25 00:51:32 +02:00
description='cli wrapper for markovify: take a text file or URL, markovify, save the results.',
2020-04-19 19:57:13 +02:00
long_description=long_description,
long_description_content_type='text/markdown',
url='https://git.disroot.org/mousebot/mkv-this',
2020-04-19 19:57:13 +02:00
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-26 03:55:43 +02:00
]
},
2020-04-19 19:57:13 +02:00
install_requires=[
'markovify',
'argparse',
'html2text',
'requests',
# 'bs4',
2020-04-19 19:57:13 +02:00
],
zip_safe=False,
2020-04-26 03:55:43 +02:00
)