-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (40 loc) · 1 KB
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
44
45
from setuptools import setup, find_packages
PACKAGE = "basecrawler"
NAME = "basecrawler"
DESCRIPTION = "This is the crawler libray"
AUTHOR = "ever391"
AUTHOR_EMAIL = "smart.jin@foxmail.com"
URL = "https://github.com/ever391/basecrawler"
VERSION = __import__(PACKAGE).__version__
requires = [
'requests',
'bs4',
'selenium',
'Pillow',
'lxml',
'jieba'
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=open("./README.rst").read(),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="MIT",
url=URL,
packages=find_packages(),
package_data={
'': ['*.rst','*.txt', "md"],
'test': ['*.msg'],
},
include_package_data=True,
install_requires=requires,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)