Added setup.py

This commit is contained in:
Dmytro Yeroshkin 2022-01-11 17:01:48 +01:00
parent bdb2d54159
commit 314341ff9e
1 changed files with 26 additions and 0 deletions

26
setup.py Normal file
View File

@ -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',
)