Skip to content

Commit db684e1

Browse files
authored
Add Poetry package manager support (#1)
* chore: add poetry support * hack: try name change * chore: specify packages * chore: fix typo oauth_provider -> oauth2_provider * Update pyproject.toml
1 parent 4b373b4 commit db684e1

File tree

3 files changed

+185
-0
lines changed

3 files changed

+185
-0
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.9.6

poetry.lock

Lines changed: 161 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[build-system]
2+
requires = ["poetry-core>=1.0.0"]
3+
build-backend = "poetry.core.masonry.api"
4+
5+
[tool.poetry]
6+
name = "django_oauth_toolkit"
7+
version = "1.3.3"
8+
description = "Common packages"
9+
authors = []
10+
packages = [
11+
{ include = "oauth2_provider" },
12+
]
13+
exclude = [
14+
"tests",
15+
]
16+
17+
[tool.poetry.dependencies]
18+
django = ">= 2.2"
19+
requests = ">= 2.13.0"
20+
oauthlib = ">= 3.1.0"
21+
python = "==3.9.6"
22+
23+
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)