-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (36 loc) · 1.16 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
# -*- coding: utf-8 -*-
# author:pengr
from __future__ import print_function
from setuptools import setup, find_packages
setup(
name="sspider",
version="1.3.6",
author="pengr",
author_email="[email protected]",
description="A simple web crawling framework.",
long_description=open("Readme.rst", encoding="utf-8").read(),
license="MIT",
url="https://github.com/duiliuliu/simple-spiders",
packages=['sspider'],
install_requires=[
"requests",
"lxml",
"xlwt",
"xlsxwriter",
"demjson"
],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
'Natural Language :: Chinese (Simplified)',
'Topic :: Communications :: Email',
'Topic :: Documentation :: Sphinx',
'Topic :: Internet',
'Topic :: Software Development :: Version Control :: Git',
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
],
)