-
Notifications
You must be signed in to change notification settings - Fork 230
/
setup.py
43 lines (40 loc) · 1.23 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
import setuptools
import os
VERSION = '0.2.4'
CUR_DIR = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(CUR_DIR, "README.md")
with open("README.md", "r") as fd:
long_description = fd.read()
setuptools.setup(
name="qdata",
version=VERSION,
description="Python SDK for getting data quickly",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/longxiaofei/spider-BaiduIndex",
author="longxiaofei",
author_email="[email protected]",
packages=setuptools.find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*", "test.py"]
),
install_requires=[
"requests>=2.19.1",
"matplotlib>=3.3.4",
"pycryptodome>=3.10.1"
],
# entry_points={
# 'console_scripts': [
# 'tobe=tobe:main'
# ],
# },
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Programming Language :: Python",
],
keywords='data sdk',
include_package_data=True
)