-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·35 lines (30 loc) · 968 Bytes
/
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
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'BabelDjango',
description = 'Utilities for using Babel in Django',
version = '1.0-dev',
license = 'BSD',
author = 'Christopher Lenz',
author_email = 'cmlenz@gmail.com',
url = 'https://github.com/cmlenz/django-babel',
packages = ['babeldjango', 'babeldjango.templatetags'],
install_requires = ['Babel'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points = """
[babel.extractors]
django = babeldjango.extract:extract_django
""",
)