forked from scrapinghub/page_finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 902 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
from setuptools import setup
from setuptools.extension import Extension
setup(
name='page_finder',
version='0.1.8',
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=[Extension("page_finder.edit_distance",
sources=["page_finder/edit_distance.c"])],
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',
],
)