-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 925 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='gtt-python-client',
version='0.2a2',
description='Python bindings for Google Translator Toolkit API.',
long_description=open('README.md').read(),
author='Yury Yurevich',
author_email='[email protected]',
url='https://github.com/jellycrystal/gtt-python-client',
license='BSD',
packages=find_packages(),
include_package_data=False,
install_requires=['gdata>=2.0.13'],
zip_safe=True,
# Get more strings from http://www.python.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)