-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
43 lines (40 loc) · 1.23 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
#!/usr/bin/env python
# coding=utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import iSearch
setup(
name='iSearch',
keywords=['dictionary', 'youdao', 'word'],
version=iSearch.__version__,
packages=['iSearch'],
url='https://github.com/birdFSS/iSearch',
license='MIT',
author='birdFSS',
description='有道词典单词查询、存储和管理的命令行工具',
install_requires=[
'requests','termcolor','bs4'
],
entry_points = {
'console_scripts': [
's = iSearch.isearch:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)