From 314341ff9e41844c24a27cc2807f6a06c3f64d87 Mon Sep 17 00:00:00 2001 From: Dmytro Yeroshkin Date: Tue, 11 Jan 2022 17:01:48 +0100 Subject: [PATCH] Added setup.py --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9ffa33e --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +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'), + include_package_data=True, + python_requires='>3.7.0', +)