-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
34 lines (32 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /usr/bin/env python
from setuptools import setup
setup(
name="django-template-i18n-lint",
version="1.2.0",
author="Rory McCann",
author_email="[email protected]",
py_modules=['django_template_i18n_lint'],
license='GPLv3+',
url='http://www.technomancy.org/python/django-template-i18n-lint/',
description='Lint tool to find non-trans/blocktrans text in django templates',
test_suite='tests',
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
entry_points={
'console_scripts': [
'django-template-i18n-lint = django_template_i18n_lint:main',
]
},
)