27 lines
891 B
Python
27 lines
891 B
Python
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'),
|
|
include_package_data=True,
|
|
python_requires='>3.7.0',
|
|
)
|