forked from wehriam/awspider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (24 loc) · 858 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Hiispider setup script."""
from setuptools import setup, find_packages
#from hiispider import VERSION
# Also requires python-dev and python-openssl
#version = '.'.join(map(str, VERSION))
version="0.10.2.9"
setup(
name = "HiiSpider",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
version = version,
install_requires = ['twisted>=8.1', 'genshi>=0.5.1', 'python-dateutil>=1.5.0,<2.0.0',
'ujson', 'boto', 'pyasn1', 'txredis'],
include_package_data = True,
# metadata for upload to PyPI
author = "John Wehr",
author_email = "[email protected]",
description = "HiiDef Web Services web crawler",
license = "MIT License",
keywords = "twisted spider crawler",
url = "http://github.com/hiidef/hiispider",
test_suite="tests",
)