-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
34 lines (32 loc) · 976 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
PATH = os.path.dirname(os.path.abspath(__file__))
templates_dir = os.path.join(PATH, "crawley", "conf", "templates")
templates_files = [os.path.join(templates_dir, file) for file in os.listdir(templates_dir)]
setup(
name="crawley",
version="0.2.5",
description="Pythonic Scraping / Crawling FrameWork built On Eventlet",
author="Crawley Developers",
author_email = "[email protected]",
license = "GPL v3",
keywords = "Scraping Crawling Framework Python",
packages=find_packages(exclude=["tests"]),
data_files=[
(templates_dir, templates_files)
],
include_package_data=True,
scripts=['crawley/bin/crawley'],
install_requires=[
'lxml',
'eventlet',
'sqlalchemy==0.7.8',
'elixir',
'pyquery',
'pymongo',
'couchdb',
],
url='http://crawley-project.org/',
)