-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 1002 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "django-labs-accounts"
version = "1.0.1"
description = "Reusable Django app for Penn Labs accounts"
authors = ["Penn Labs <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pennlabs/django-labs-accounts"
repository = "https://github.com/pennlabs/django-labs-accounts"
include = ["CHANGELOG.md", "LICENSE"]
exclude = ["tox.ini"]
packages = [
{ include = "accounts" },
{ include = "identity" },
{ include = "analytics" },
]
[tool.poetry.dependencies]
python = "^3.11"
Django = "^5.0.2"
requests-oauthlib = "^1.3.1"
requests = "^2.0.0"
djangorestframework = "^3.14.0"
six = "^1.16.0"
jwcrypto = "^1.4.2"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^3.9.0"
flake8-isort = "^4.0.0"
flake8-quotes = "^3.2.0"
flake8-absolute-import = "^1.0"
pytest = "^6.2.3"
pytest-cov = "^2.11.1"
pytest-django = "^4.1.0"
coverage = "^5.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"