forked from cubicova17/django-static-underscore-i18n
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (33 loc) · 1.21 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
from setuptools import setup, find_packages
setup(
name="django-static-underscore-i18n",
version="2.0.0",
author="Dmytro Voloshyn",
author_email="[email protected]",
url="http://django-static-underscore-i18n.readthedocs.org/",
download_url='https://github.com/cubicova17/django-static-underscore-i18n/tarball/1.9',
description="A Django app that provides helper for generating "
"Javascript Underscore templates to static files with i18n support.",
long_description=open('README.rst').read(),
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
install_requires=[
"Django>=1.8",
"django-appconf>=0.6",
],
license="BSD",
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 :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
)