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

Commit 4891115

Browse files
committed
Prep for publishing
1 parent 409a871 commit 4891115

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
# Download and cache dependencies
2424
- restore_cache:
2525
keys:
26-
- v1-dependencies-{{ checksum "requirements.txt" }}
26+
- v2-dependencies-{{ checksum "requirements.txt" }}
2727
# fallback to using the latest cache if no exact match is found
28-
- v1-dependencies-
28+
- v2-dependencies-
2929

3030
- run:
3131
name: install dependencies
@@ -37,7 +37,7 @@ jobs:
3737
- save_cache:
3838
paths:
3939
- ./venv
40-
key: v1-dependencies-{{ checksum "requirements.txt" }}
40+
key: v2-dependencies-{{ checksum "requirements.txt" }}
4141

4242
- run:
4343
name: typecheck

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# 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)
2-
Charles Schwab support in bankroll
2+
3+
Charles Schwab support for [bankroll](https://github.com/bankroll-py).

requirements.txt

-366 Bytes
Binary file not shown.

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
version="0.4.0",
99
author="Justin Spahr-Summers",
1010
author_email="[email protected]",
11-
description="TODO",
11+
description="Charles Schwab support for bankroll",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
license="MIT",
@@ -26,9 +26,7 @@
2626
"Topic :: Office/Business :: Financial :: Investment",
2727
"Typing :: Typed",
2828
],
29-
install_requires=[
30-
"bankroll_broker @ git+https://github.com/bankroll-py/bankroll-broker@master#egg=bankroll_broker"
31-
],
29+
install_requires=["bankroll_broker ~= 0.4.0", "bankroll_model ~= 0.4.0"],
3230
keywords="trading investing finance portfolio schwab",
3331
)
3432

0 commit comments

Comments
 (0)