-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (27 loc) · 969 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
26
27
28
29
30
from setuptools import setup, find_packages
from googletrans import __version__ as VERSION
requirements = [
]
test_requirements = [
]
setup(
name = 'googletrans-python',
version = VERSION,
description = 'googletrans-python package.',
long_description = "googletrans",
author = "leeyunjai",
author_email = '[email protected]',
url = 'https://github.com/leeyunjai/googletrans-python',
packages = find_packages(),
install_requires = requirements,
keywords = 'googletrans',
classifiers = [
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite = 'tests',
tests_require = test_requirements
)