Skip to content

Commit

Permalink
feat: added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tikazyq committed Feb 7, 2024
1 parent 9da3e56 commit d1be72c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions crawlab_ai/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .scrapy import *
1 change: 1 addition & 0 deletions crawlab_ai/scrapy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .list_spider import ListSpider
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from distutils.core import setup

setup(
name='crawlab-ai',
version='0.0.1',
packages=['crawlab_ai'],
url='https://github.com/crawlab-team/crawlab-ai-sdk',
license='MIT',
author='Marvin Zhang',
author_email='[email protected]',
description='SDK for Crawlab AI',
package_dir={'crawlab_ai': 'crawlab_ai'},
keywords=['crawlab', 'ai'],
)

0 comments on commit d1be72c

Please sign in to comment.