-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 968 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
28
29
30
31
from setuptools import setup
from setuptools import find_packages
setup(
name = "py-quick-crawlers",
version = "0.0.1",
author = "Vinoth Kumar Kannan",
author_email = "[email protected]",
description = "Python APIs wrapping generic Scrapy crawlers"
license = "MIT",
keywords = "python quick scrapy web crawler",
url = "https://github.com/vdraceil/py-quick-crawlers",
packages = find_packages(),
install_requires = [
"scrapy==1.1.0",
],
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Developement",
"Topic :: Web Crawling",
"License :: OSI Approved :: MIT License",
],
zip_safe = True
)