forked from LowinLi/fushare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (30 loc) · 757 Bytes
/
Copy pathsetup.py
File metadata and controls
40 lines (30 loc) · 757 Bytes
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
from setuptools import setup
long_desc = """
fushare
===============
https://github.com/LowinLi/fushare
Installation
--------------
pip install fushare
Upgrade
---------------
pip install fushare --upgrade
"""
setup(
name='fushare',
version='1.2.10',
install_requires =
['pandas>=0.23.1',
'requests>=2.12.4',
'bs4',
'matplotlib'
],
description='A utility for fundamentals data of China commodity futures',
packages = ['fushare'],
package_data={'': ['*.py','*.json']},
long_description=long_desc,
author='LowinLi',
author_email='li783170560@126.cn',
url = 'https://github.com/LowinLi/fushare',
keywords='Fundmentals Commodity Future Data'
)