Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
Stable-Release-v2.4.6
Browse files Browse the repository at this point in the history
- Allow .flake8 config in .gitignore
- Add basic .flake8 config
- Clean up README.md
- Append info to notes in docs/07-Development.md
  • Loading branch information
teleprint-me committed Feb 25, 2022
1 parent 7c1e64c commit 81d128e
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 13 deletions.
16 changes: 16 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[flake8]
ignore = E251,E402,E501,W503
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
# max-complexity = 10
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ dmypy.json
cython_debug/

# Linters
.flake8
#.flake8

# Sqlite Database Path
db/
Expand Down
16 changes: 7 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,16 @@
## Documentation
- [Read The Documentation](https://github.com/teleprint-me/coinbase-pro/tree/main/docs)

## Tasklist
## Features
- [x] REST API
- [x] API Key Authentication
- [x] Coinbase Pro
- [x] Coinbase Exchange
- [x] Plugins `[Experimental]`
- [x] WSS API
- [x] API Key Authentication
- [x] API Key Authentication
- [x] Coinbase Pro
- [x] Coinbase Exchange
- [x] Plugins `[Experimental]`
- [x] Test Suite
- [ ] API Documentation `[In Progress]`
- [x] Quickstart Guide
- [ ] Install `[In Progress] [Bug]`
- [x] Documentation
- [x] Install

## Contributions

Expand Down
2 changes: 1 addition & 1 deletion coinbase_pro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
__agent__: str = "coinbase-pro"
__source__: str = "https://github.com/teleprint-me/coinbase-pro"
__version__: str = "2.4.5"
__version__: str = "2.4.6"
__limit__: float = 1 / 3.5
2 changes: 1 addition & 1 deletion docs/07-Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ _Note: You can find more information about [poetry commands](https://python-poet
- Use `git` for Branches, Tags, and Pull Requests
- Add your handle to Contributors.md

_Note: `flake8`, `black`, and `pytest` are included in the `pyproject.toml`. They are installed automatically as dependecies when `poetry install` is executed._
_Note: `flake8`, `black`, and `pytest` are included in the `pyproject.toml`. They are installed automatically as dependecies when `poetry install` is executed. A `.flake8` config is included with the repository for local development._
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "coinbase-pro"
version = "2.4.5"
version = "2.4.6"
description = "Another Unofficial Python Wrapper for Coinbase Pro"
authors = ["teleprint-me"]
license = "AGPL"
Expand Down

0 comments on commit 81d128e

Please sign in to comment.