Files
novel-stats/setup.py

28 lines
922 B
Python
Raw Normal View History

2021-09-11 09:57:48 -07:00
from setuptools import find_packages, setup
2021-10-22 13:44:56 -07:00
VERSION = "0.1.0"
2021-09-11 09:57:48 -07:00
setup(
2021-10-22 13:44:56 -07:00
name="novel-stats",
2021-09-11 09:57:48 -07:00
version=VERSION,
2021-10-22 13:44:56 -07: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 09:57:48 -07:00
classifiers=[
2021-10-22 13:44:56 -07: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 09:57:48 -07:00
],
2021-10-22 13:44:56 -07:00
packages=find_packages(exclude=["tests*"]),
entry_points={"console_scripts": ["novel-stats = novel_stats.novel_stats:main",]},
2021-09-11 09:57:48 -07:00
install_requires=(),
2021-10-22 13:44:56 -07:00
extras_require={"multi_file": ["MarkdownPP"],},
2021-09-11 09:57:48 -07:00
include_package_data=True,
)