forked from amandasaurus/django-template-i18n-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update setup.py and tox.ini to fix linting issues
- Loading branch information
Showing
2 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,24 +7,24 @@ | |
version="1.2.0", | ||
author="Rory McCann", | ||
author_email="[email protected]", | ||
py_modules=['django_i18n_lint'], | ||
license='GPLv3+', | ||
url='http://www.technomancy.org/python/django-template-i18n-lint/', | ||
description='Lint tool to find untranslated text in django templates', | ||
py_modules=["django_i18n_lint"], | ||
license="GPLv3+", | ||
url="http://www.technomancy.org/python/django-template-i18n-lint/", | ||
description="Lint tool to find untranslated text in django templates", | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'License :: OSI Approved :: BSD License', | ||
'Environment :: Console', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.10', | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"License :: OSI Approved :: BSD License", | ||
"Environment :: Console", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'django-i18n-lint = django_i18n_lint:main', | ||
"console_scripts": [ | ||
"django-i18n-lint = django_i18n_lint:main", | ||
] | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters