forked from jjangsangy/py-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.72 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""
py-translate
============
A Translation Tool for Humans
:copyright: (c) 2014 Sang Han
"""
from version import __version__, __release__, __build__
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
setup(
name='py-translate',
description='A Translation Tool for Humans',
long_description='\n'.join(
[
open('README.rst', 'rb').read().decode('utf-8'),
open('HISTORY.rst', 'rb').read().decode('utf-8'),
]
),
author='Sang Han',
license='Apache License 2.0',
url='https://github.com/jjangsangy/py-translate',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(exclude=['*tests']),
version=__version__,
setup_requires=['futures', 'requests'],
test_suite='translate.tests',
cmdclass={'tests': TestCommand},
platforms='any',
zip_safe=False,
entry_points={
'console_scripts': [
'translate = translate.__main__:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Unix Shell',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities',
],
)