-
Notifications
You must be signed in to change notification settings - Fork 98
/
setup.py
43 lines (36 loc) · 1.2 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
from setuptools import setup
setup(
name='scrapy-fake-useragent',
version='1.4.4',
description='Use a random User-Agent provided by fake-useragent '
'for every request',
long_description=open('README.rst').read(),
keywords='scrapy proxy user-agent web-scraping',
license='New BSD License',
author='Alexander Afanasyev',
author_email='[email protected]',
maintainer='Alexander Afanasyev',
maintainer_email='[email protected]',
url='https://github.com/alecxe/scrapy-fake-useragent',
python_requires=">=3.5",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'scrapy_fake_useragent',
],
install_requires=[
'fake-useragent',
'faker'
],
)