31 lines
		
	
	
		
			888 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			888 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
from setuptools import setup, find_packages
 | 
						|
 | 
						|
 | 
						|
setup(
 | 
						|
    name='django-babel',
 | 
						|
    description='Utilities for using Babel in Django',
 | 
						|
    version='1.0-dev',
 | 
						|
    license='BSD',
 | 
						|
    author='Christopher Lenz',
 | 
						|
    author_email='cmlenz@gmail.com',
 | 
						|
    url='http://github.com/graingert/django-babel/',
 | 
						|
    packages=find_packages(exclude=('tests',)),
 | 
						|
    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
 | 
						|
    """,
 | 
						|
)
 |