-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (23 loc) · 814 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
from setuptools import setup, find_packages
setup(
name='django-google-translator',
version='0.1',
description='django-google-translator is a reusable Django application for translating .PO files through Google API.',
author='Mo Mughrabi',
author_email='mo.mughrabi@gmail.com',
url='https://github.com/mo-mughrabi/django-google-translator/tree/master',
packages=find_packages(),
zip_safe=False,
install_requires=[
'polib==1.0.2',
],
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)