mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
19 lines
587 B
Python
19 lines
587 B
Python
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.'
|
|
)
|