from setuptools import find_packages, setup VERSION = "0.1.0" setup( name="format-novel", version=VERSION, description="Format a Word novel document in a standard style for sharing or submission.", author="Dan Helfman", author_email="witten@torsion.org", url="https://projects.torsion.org/witten/format-novel", classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Other Audience", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python", "Topic :: Office/Business", ], packages=find_packages(exclude=["tests*"]), entry_points={"console_scripts": ["format-novel = format_novel.format_novel:main",]}, install_requires=('python-docx',), include_package_data=True, python_requires='>3.7.0', )