Files
crawlab/setup.py
Marvin Zhang 8361c04de9 added setup.py
2019-03-03 10:48:04 +08:00

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.'
)