Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
Prepare for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Aug 29, 2019
1 parent e4a2424 commit e603c4d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v2-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v2-dependencies-

- run:
name: install dependencies
Expand All @@ -37,7 +37,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}
key: v2-dependencies-{{ checksum "requirements.txt" }}

- run:
name: typecheck
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# bankroll-broker-ibkr [![CircleCI](https://circleci.com/gh/bankroll-py/bankroll-broker-ibkr.svg?style=svg&circle-token=cdf153fcfdf22efd33d454b39734564471524f9e)](https://circleci.com/gh/bankroll-py/bankroll-broker-ibkr)
Interactive Brokers support in bankroll
# bankroll-broker-ibkr [![PyPI version](https://badge.fury.io/py/bankroll-broker-ibkr.svg)](https://badge.fury.io/py/bankroll-broker-ibkr) [![CircleCI](https://circleci.com/gh/bankroll-py/bankroll-broker-ibkr.svg?style=svg&circle-token=cdf153fcfdf22efd33d454b39734564471524f9e)](https://circleci.com/gh/bankroll-py/bankroll-broker-ibkr)

[Interactive Brokers](https://www.interactivebrokers.com) support for [bankroll](https://github.com/bankroll-py).
Binary file modified requirements.txt
Binary file not shown.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
version="0.4.0",
author="Justin Spahr-Summers",
author_email="justin@jspahrsummers.com",
description="TODO",
description="Interactive Brokers support for bankroll",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
Expand All @@ -27,13 +27,13 @@
"Typing :: Typed",
],
install_requires=[
"backoff>=1.8",
"bankroll_broker @ git+https://github.com/bankroll-py/bankroll-broker@master#egg=bankroll_broker",
"bankroll_marketdata @ git+https://github.com/bankroll-py/bankroll-marketdata@master#egg=bankroll_marketdata",
"bankroll_model @ git+https://github.com/bankroll-py/bankroll-model@master#egg=bankroll_model",
"ib-insync>=0.9.50",
"pandas>=0.25.1",
"progress>=1.5",
"backoff ~= 1.8",
"bankroll_broker ~= 0.4.0",
"bankroll_marketdata ~= 0.4.0",
"bankroll_model ~= 0.4.0",
"ib-insync ~= 0.9.50",
"pandas ~= 0.25.1",
"progress ~= 1.5",
],
keywords="trading investing finance portfolio ib ibkr tws",
)
Expand Down

0 comments on commit e603c4d

Please sign in to comment.