-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (40 loc) · 1.1 KB
/
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
41
42
43
44
45
46
47
48
[project]
name = "sillypaste"
version = "0.0.1"
[tool.setuptools]
packages = ["sillypaste"]
[tool.black]
skip-string-normalization = true
line-length = 79
[tool.poetry]
name = "sillypaste"
version = "0.0.1"
description = ""
readme = "README.md"
packages = [{include = "sillypaste"}]
authors = ["Winston Weinert <[email protected]>"]
[tool.poetry.scripts]
sillypaste = "sillypaste.manage:main"
[tool.poetry.dependencies]
python = "^3.10"
djangorestframework = "^3.14.0"
django-watchman = "^1.3.0"
django-lazysignup = {git = "https://github.com/winny-/django-lazysignup.git", rev = "ec753db87e21df4b4489c0ef31a86595b9277605"}
django-canonical-domain = "^0.9.2"
org-python = "^0.3.2"
markdown = "^3.3.4"
pygments = "^2.8.1"
dj-database-url = "^2.0.0"
gunicorn = "^20.1.0"
whitenoise = "^6.4.0"
django-filter = "^23.2"
Django.version = "^4.1.6"
psycopg2.version = "^2.8.6"
python-dotenv.version = "^0.19.1"
django-livereload-server.version = "^0.3.2"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
coverage = "^7.2.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"