forked from plafl/page_finder
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (30 loc) · 1011 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
from setuptools import setup
from setuptools.extension import Extension
import sys
if sys.platform == 'win32':
ext_modules = []
else:
ext_modules = [Extension("page_finder.edit_distance",
sources=["page_finder/edit_distance.c"])]
setup(
name='page_finder',
version='0.1.9',
url='https://github.com/scrapinghub/page_finder',
author='page_finder developers',
maintainer='Ruairi Fahy',
maintainer_email='[email protected]',
install_requires=['numpy'],
packages=['page_finder'],
ext_modules=ext_modules,
license='MIT',
keywords=['crawler', 'frontier', 'scrapy', 'web', 'requests'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)