mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-24 17:41:03 +01:00
added setup.py
This commit is contained in:
18
setup.py
Normal file
18
setup.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from setuptools import setup
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
with open('requirements.txt') as f:
|
||||
requirements = [l for l in f.read().splitlines() if l]
|
||||
|
||||
setup(
|
||||
name='crawlab',
|
||||
version='0.0.1',
|
||||
packages=['db', 'test', 'model', 'tasks', 'utils', 'routes', 'constants'],
|
||||
url='https://github.com/tikazyq/crawlab',
|
||||
license='BSD',
|
||||
author='Marvin Zhang',
|
||||
author_email='tikazyq@163.com',
|
||||
description='Celery-based web crawler admin platform for managing distributed web spiders regardless of languages and frameworks.'
|
||||
)
|
||||
Reference in New Issue
Block a user