Black formatting
This commit is contained in:
parent
f526ed5166
commit
21ec87cee4
10 changed files with 276 additions and 227 deletions
24
setup.py
24
setup.py
|
@ -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"],
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue