25 lines
846 B
Python
25 lines
846 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name='simple-translation',
|
|
version='0.6.0',
|
|
description='This is a translation app/plugin with support for django-cms 2.0 plugins in the admin',
|
|
author='Oyvind Saltvik',
|
|
author_email='oyvind@gmail.com',
|
|
url='http://github.com/fivethreeo/simple-translation/',
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Framework :: Django',
|
|
],
|
|
install_requires = ['Django>=1.2.4'],
|
|
test_suite = 'simple_translation.test.run_tests.run_tests',
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|
|
|