novel-stats-fork/setup.py

28 lines
922 B
Python
Raw Permalink Normal View History

2021-09-11 16:57:48 +00:00
from setuptools import find_packages, setup
2021-10-22 20:44:56 +00:00
VERSION = "0.1.0"
2021-09-11 16:57:48 +00:00
setup(
2021-10-22 20:44:56 +00:00
name="novel-stats",
2021-09-11 16:57:48 +00:00
version=VERSION,
2021-10-22 20:44:56 +00:00
description="Produce word count statistics for novels written in Markdown format.",
author="Dan Helfman",
author_email="witten@torsion.org",
url="https://projects.torsion.org/witten/novel-stats",
2021-09-11 16:57:48 +00:00
classifiers=[
2021-10-22 20:44:56 +00:00
"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",
"Topic :: Text Processing :: Markup",
2021-09-11 16:57:48 +00:00
],
2021-10-22 20:44:56 +00:00
packages=find_packages(exclude=["tests*"]),
entry_points={"console_scripts": ["novel-stats = novel_stats.novel_stats:main",]},
2021-09-11 16:57:48 +00:00
install_requires=(),
2021-10-22 20:44:56 +00:00
extras_require={"multi_file": ["MarkdownPP"],},
2021-09-11 16:57:48 +00:00
include_package_data=True,
)