-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
49 lines (41 loc) · 1.36 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
44
45
46
47
48
49
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
Author: qinLess
File: setup.py
Time: 2021/4/21 下午9:49
-------------------------------------------------
Change Activity: 2021/4/21 下午9:49
-------------------------------------------------
Desc:
"""
from setuptools import setup, find_packages
setup(
name='magical',
version='1.1.0',
description='参照 scrapy 轻量级爬虫框架',
author='magical developers',
maintainer='qinjiahu',
maintainer_email='[email protected]',
license='BSD',
packages=find_packages(exclude=(
'examples', 'examples.*', 'public', 'public.*', 'test', 'test.*', '.gitee', '.gitee.*',
'public', 'public.*', 'spiders', 'spiders.*', 'logs', 'logs.*'
)),
package_data={
'': ['*.py.tmpl', '*.json']
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Framework :: Crawler',
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.6.*',
install_requires=[]
)