forked from alecxe/scrapy-fake-useragent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 818 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
from setuptools import setup
setup(
name='scrapy-fake-useragent',
version='0.0.1',
description='Use a random User-Agent provided by fake-useragent every request',
long_description=open('README.rst').read(),
keywords='scrapy proxy web-scraping',
license='New BSD License',
author="Alexander Afanasyev",
author_email='[email protected]',
url='https://github.com/alecxe/scrapy-fake-useragent',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'scrapy_fake_useragent',
],
install_requires=[
'fake-useragent'
],
)