forked from scrapinghub/frontera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (60 loc) · 1.92 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'frontera/_version.py'
versioneer.versionfile_build = 'frontera/_version.py'
versioneer.tag_prefix = 'v' # tags are like v1.2.0
versioneer.parentdir_prefix = 'frontera-'
setup(
name='frontera',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=('tests', 'tests.*', 'examples', 'examples.*')),
url='https://github.com/scrapinghub/frontera',
description='A flexible frontier for web crawlers',
author='Scrapy developers',
maintainer='Javier Casas',
maintainer_email='javier@scrapinghub.com',
license='BSD',
include_package_data=True,
zip_safe=False,
keywords=['crawler', 'frontier', 'scrapy', 'web', 'requests', 'frontera'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'six>=1.8.0',
'w3lib>=1.10.0',
'SQLAlchemy>=0.9.8'
],
extras_require={
'graphs': [
"pyparsing==1.5.7",
"pydot==1.0.28",
],
'logging': [
"colorlog>=2.4.0",
],
'tldextract': [
'tldextract>=1.5.1',
]
},
tests_require=[
"pytest>=2.6.4",
"MySQL-python>=1.2.5",
"PyMySQL>=0.6.3",
"psycopg2>=2.5.4",
"scrapy>=0.24",
"tldextract>=1.5.1",
]
)