Tests! And code formatting.
This commit is contained in:
38
setup.py
38
setup.py
@@ -1,33 +1,27 @@
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
VERSION = '0.1.0'
|
||||
VERSION = "0.1.0"
|
||||
|
||||
|
||||
setup(
|
||||
name='novel-stats',
|
||||
name="novel-stats",
|
||||
version=VERSION,
|
||||
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',
|
||||
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",
|
||||
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',
|
||||
'Topic :: Text Processing :: Markup',
|
||||
"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",
|
||||
],
|
||||
packages=find_packages(exclude=['tests*']),
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'novel-stats = novel_stats.novel_stats:main',
|
||||
]
|
||||
},
|
||||
packages=find_packages(exclude=["tests*"]),
|
||||
entry_points={"console_scripts": ["novel-stats = novel_stats.novel_stats:main",]},
|
||||
install_requires=(),
|
||||
extras_require = {
|
||||
'multi_file': ['MarkdownPP'],
|
||||
},
|
||||
extras_require={"multi_file": ["MarkdownPP"],},
|
||||
include_package_data=True,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user