-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
46 lines (43 loc) · 1.49 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
#! /usr/bin/env python
# -*- coding:utf-8 -*-
"""
@author : MG
@Time : 2018/6/14 16:07
@File : setup.py
@contact : [email protected]
@desc :
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as rm:
long_description = rm.read()
setup(name='DIRestPlus',
version='0.2.3',
description='基于Restplus实现同花顺iFinD接口分布式调用',
long_description=long_description,
long_description_content_type='text/markdown',
author='MG',
author_email='[email protected]',
url='https://github.com/DataIntegrationAlliance/DIRestPlus',
packages=find_packages(),
python_requires='>=3.5',
classifiers=(
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"Natural Language :: Chinese (Simplified)",
"Topic :: Software Development",
),
install_requires=[
'flask_restplus>=0.11.0',
'pandas>=0.23.0',
'requests>=2.19.1',
'xlrd>=1.1.0',
])