-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from panosangelopoulos/support-python-and-djang…
…o-versions Add support for python version 3.7
- Loading branch information
Showing
3 changed files
with
118 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,39 @@ | ||
# django_bitgo | ||
|
||
Django library for BitGo | ||
|
||
[![Downloads](https://static.pepy.tech/personalized-badge/django-bitgo?period=month&units=international_system&left_color=black&right_color=blue&left_text=Downloads)](https://pepy.tech/project/django-bitgo) | ||
|
||
# Overview | ||
|
||
Django BitGo is a powerful and flexible library for connecting your BitGo account and integrate it with your Django project. | ||
|
||
--- | ||
|
||
# Requirements | ||
|
||
- Python (3.7, 3.8, 3.9, 3.10) | ||
- Django (3.2, 4.0, 4.1) | ||
We **highly recommend** and only officially support the latest patch release of | ||
each Python and Django series. | ||
|
||
# Installation | ||
|
||
Install using `pip` ... | ||
|
||
pip install django-bitgo | ||
|
||
Install using `poetry` ... | ||
|
||
``` | ||
poetry add django-bitgo | ||
``` | ||
|
||
Add `'django_bitgo'` to your `INSTALLED_APPS` setting. | ||
|
||
```python | ||
INSTALLED_APPS = [ | ||
... | ||
'django_bitgo', | ||
] | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "django_bitgo" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
description = "Django app for bitGo" | ||
authors = ["panosangelopoulos <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -10,12 +10,12 @@ readme = "README.md" | |
keywords = ["django", "bitgo", "django_bitgo"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
Django = "^4.1.1" | ||
python = "^3.7.1" | ||
Django = "^3.2.14" | ||
requests = "^2.28.1" | ||
black = "^22.8.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = "^22.8.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|