Skip to content

Commit 71f8c92

Browse files
author
Kai Su
committed
modified: .gitignore
modified: requirements.txt modified: setup.py
1 parent e980ecc commit 71f8c92

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ __pycache__/
44
build/
55
dist/
66
eggs/
7+
*.egg-info
78

89
.idea
910
.DS_Store

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
logbook
21
six
32
simplejson
43
delorean
5-
pandas
4+
pandas==0.24.2
65
python-dateutil
76
pytz
87
pyasn1==0.4.2

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
55
@author: gaoan
66
"""
7+
from os import path
78
from setuptools import find_packages, setup
89

9-
install_requires = ['six', 'simplejson', 'delorean', 'pandas', 'python-dateutil', 'pytz', 'pyasn1==0.4.4', 'rsa==4.0', 'stomp.py']
10+
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt'), encoding='utf-8') as f:
11+
install_requires = f.read()
1012

1113
setup(
1214
name='tigeropen',
13-
version='1.1.7',
15+
version='1.1.8',
1416
description='TigerBrokers Open API',
1517
packages=find_packages(exclude=[]),
1618
author='TigerBrokers',

0 commit comments

Comments
 (0)