-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.13 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
# -*- coding:utf-8 -*-
# @Author cc
# @TIME 2020/04/29 23:26
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='translate_util',
version='1.1.4',
description=(
'translate tool support(google)'
),
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
author='cc',
author_email='abcdef123456chen@sohu.com',
maintainer='cc',
maintainer_email='abcdef123456chen@sohu.com',
license='MIT License',
install_requires=[
"requests>=2.22.0",
"retrying>=1.3.3",
"loguru>=0.3.2",
"PyExecJS>=1.5.1"
],
packages=find_packages(),
platforms=["all"],
url='https://github.com/abo123456789/translate_util',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
])