-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 1.08 KB
/
setup.py
File metadata and controls
39 lines (33 loc) · 1.08 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='spiderutil',
version='0.1.7',
packages=['spiderutil', 'spiderutil.path', 'spiderutil.connector',
'spiderutil.network', 'spiderutil.structure'],
url='https://github.com/Thesharing/spider-utility',
license='MIT',
author='Thesharing',
author_email='',
description='Utilities for spider.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'redis>=3.3.0',
'pymongo>=3.8.0',
'requests>=2.20.0'
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4',
)