forked from DormyMo/SpiderKeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.12 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.12 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from SpiderKeeper import __version__, __author__
setup(
name='SpiderKeeper',
version=__version__,
description='Admin ui for spider service',
long_description=
'Go to https://github.com/DormyMo/SpiderKeeper/ for more information.',
author=__author__,
author_email='modongming91@gmail.com',
url='https://github.com/DormyMo/SpiderKeeper/',
license='MIT',
include_package_data=True,
packages=find_packages(),
install_requires=[
'APScheduler==3.3.1',
'Flask==0.12.1',
'Flask-RESTful==0.3.5',
'flask-restful-swagger==0.19',
'Flask-SQLAlchemy==2.2',
'PyMySQL==0.7.11',
'requests==2.13.0'
],
entry_points={
'console_scripts': {
'spiderkeeper = SpiderKeeper.run:main'
},
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
)