-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
48 lines (40 loc) · 1.27 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
from setuptools import setup
import popupdict
setup(
name="popupdict",
version=popupdict.__version__,
url='https://github.com/bianjp/popup-dict',
author='Bian Jiaping',
author_email='[email protected]',
license='MIT',
keywords='dict youdao',
description='Linux 下的划词翻译工具,支持有道智云等多种翻译服务',
long_description='查看 `GitHub <https://github.com/bianjp/popup-dict>`_',
packages=['popupdict'],
include_package_data=True,
zip_safe=True,
platforms='Linux',
python_requires='>= 3.6',
install_requires=[
'psutil',
'requests',
],
entry_points={
'console_scripts': [
'popup-dict = popupdict.main:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications :: GTK',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: End Users/Desktop',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Desktop Environment',
'Topic :: Education',
],
)