-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
39 lines (35 loc) · 1.04 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
# coding=utf8
from setuptools import setup, find_packages
from youdao.config import __author__, __version__
setup(
name='YoudaoDict',
version=__version__,
keywords=('youdao', 'dict', 'partly offline dict', 'web spider'),
description="通过有道爬虫查询单词",
license='MIT',
author=__author__,
author_email='hellflamedly@gmail.com',
url="/~https://github.com/hellflame/youdao",
packages=find_packages(),
install_requires=[
'beautifulsoup4',
'requests',
'gevent'
],
platforms="UNIX like",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
"Environment :: Console",
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX'
],
entry_points={
'console_scripts': [
'youdao=youdao.run:main',
'service.youdao=youdao.service.run:main'
]
}
)