Black formatting

This commit is contained in:
Scot Hacker 2018-12-21 00:38:44 -08:00
parent f526ed5166
commit 21ec87cee4
10 changed files with 276 additions and 227 deletions

View file

@ -5,7 +5,7 @@ from setuptools import setup, find_packages
import todo as package
setup(
name='django-todo',
name="django-todo",
version=package.__version__,
description=package.__doc__.strip(),
author=package.__author__,
@ -14,18 +14,18 @@ setup(
license=package.__license__,
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Office/Business :: Groupware',
'Topic :: Software Development :: Bug Tracking',
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Bug Tracking",
],
include_package_data=True,
zip_safe=False,
install_requires=['unidecode', ],
install_requires=["unidecode"],
)