-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 930 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='scrapy-browser',
version='0.0.1',
url='https://github.com/michalmo/scrapy-browser',
description='Proof of Concept of scraping with browser automation',
packages=['scrapy_browser'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Scrapy',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
requires=['scrapy'],
)