-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
46 lines (43 loc) · 1.42 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
from setuptools import setup, find_packages
import sys
version = '1.5.0'
install_requires=[
'click',
'polib',
'openpyxl',
'argparse;python_version<"3.0"',
]
setup(name='poxls',
version=version,
description='Convert between Excel and PO files',
long_description=open('README.rst').read() + '\n' + \
open('changes.rst').read(),
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: DFSG approved',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
],
keywords='translation po gettext Babel lingua',
author='Wichert Akkerman',
author_email='wichert@wiggy.net',
url='https://github.com/wichert/po-xls',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=True,
install_requires=install_requires,
entry_points='''
[console_scripts]
po-to-xls = poxls.po_to_xls:main
xls-to-po = poxls.xls_to_po:main
'''
)