forked from crawlab-team/crawlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.09 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.09 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
#-*- encoding: UTF-8 -*-
from setuptools import setup, find_packages
VERSION = '0.2.3'
with open('README.md') as fp:
readme = fp.read()
setup(name='crawlab-server',
version=VERSION,
description="Celery-based web crawler admin platform for managing distributed web spiders regardless of languages and frameworks.",
long_description=readme,
classifiers=['Python', 'Javascript', 'Scrapy'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='python crawlab celery crawler spider platform scrapy',
author='tikazyq',
author_email='tikazyq@163.com',
url='https://github.com/tikazyq/crawlab',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=[
'celery',
'flower',
'requests',
'pymongo',
'flask',
'flask_cors',
'flask_restful',
'lxml',
'gevent',
'scrapy',
],
entry_points={
'console_scripts':[
'crawlab = crawlab.manage:main'
]
},
)