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

Commit

Permalink
Prep for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Aug 29, 2019
1 parent 409a871 commit 4891115
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# bankroll-broker-schwab [![CircleCI](https://circleci.com/gh/bankroll-py/bankroll-broker-schwab.svg?style=svg&circle-token=709567d8d3ada5ea31add94b7807d290b218a661)](https://circleci.com/gh/bankroll-py/bankroll-broker-schwab)
Charles Schwab support in bankroll

Charles Schwab support for [bankroll](https://github.com/bankroll-py).
Binary file modified requirements.txt
Binary file not shown.
6 changes: 2 additions & 4 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="Charles Schwab support for bankroll",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
Expand All @@ -26,9 +26,7 @@
"Topic :: Office/Business :: Financial :: Investment",
"Typing :: Typed",
],
install_requires=[
"bankroll_broker @ git+https://github.com/bankroll-py/bankroll-broker@master#egg=bankroll_broker"
],
install_requires=["bankroll_broker ~= 0.4.0", "bankroll_model ~= 0.4.0"],
keywords="trading investing finance portfolio schwab",
)

0 comments on commit 4891115

Please sign in to comment.