Skip to content

Commit

Permalink
Merge pull request #3 from panosangelopoulos/support-python-and-djang…
Browse files Browse the repository at this point in the history
…o-versions

Add support for python version 3.7
  • Loading branch information
panosangelopoulos authored Sep 17, 2022
2 parents 023ee66 + d495e76 commit 90dc66d
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 23 deletions.
37 changes: 37 additions & 0 deletions README.md
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',
]
```
96 changes: 77 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
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"
Expand All @@ -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"]
Expand Down

0 comments on commit 90dc66d

Please sign in to comment.