novel-compiler/setup.py

27 lines
891 B
Python
Raw Permalink Normal View History

2022-01-11 16:01:48 +00:00
from setuptools import find_packages, setup
VERSION = "0.1.0"
setup(
name="novel-compiler",
version=VERSION,
description="Convert a markdown novel to a docx file in a standard style for sharing or submission.",
author="Dmytro Yeroshkin",
author_email="dmytro.yeroshkin@gmail.com",
url="https://projects.torsion.org/",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Office/Business",
],
packages=find_packages(),
entry_points={"console_scripts": ["novel-compiler = novel_compiler.novel_compiler:main",]},
install_requires=('docxtpl','markdown','novel_stats','MarkdownPP', 'lxml'),
2022-01-11 16:01:48 +00:00
include_package_data=True,
python_requires='>3.7.0',
)