forked from zcribe/translate-po
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.38 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="translate-po", # Replace with your own username
version="1.0.13",
author="Erlend Eelmets",
author_email="[email protected]",
description="Automatic PO file translator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zcribe/translate-po",
packages=setuptools.find_packages(exclude=['docs', 'tests', 'translated', 'untranslated']),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Topic :: Software Development :: Internationalization',
],
python_requires='>=3.6',
keywords='po translate automatic google',
project_urls={
'Source': 'https://github.com/zcribe/translate-po',
'Documentation': 'https://github.com/zcribe/translate-po/docs/main.html',
'Author': 'http://www.erlend.ee',
},
entry_points={
'console_scripts': [
'sample=sample:main',
],
},
install_requires=[
'polib>=1.1.0',
'googletrans>=3.0.0'
],
setup_requires=[
'polib>=1.1.0',
'googletrans>=3.0.0'
],
)