added setup.py

This commit is contained in:
Marvin Zhang
2019-03-03 10:48:04 +08:00
parent d26f43e09e
commit 8361c04de9
151 changed files with 21609 additions and 10 deletions

18
setup.py Normal file
View 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.'
)