-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (61 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "backend"
version = "0.0.1"
description = "Base dos Dados API"
authors = ["Gabriel Gazola Milan <[email protected]>", "Guilherme Peres <[email protected]>"]
license = "GPL-3.0-only"
homepage = "https://github.com/basedosdados/backend"
repository = "https://github.com/basedosdados/backend"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
Django = "^4.1.3"
psycopg2-binary = "^2.9.5"
django-cors-headers = "^3.13.0"
gunicorn = "^20.1.0"
django-health-check = "^3.17.0"
graphene-django = "3.0.0"
django-filter = "^22.1"
django-graphql-jwt = "^0.3.4"
django-modeltranslation = "^0.18.8"
pillow = "^9.4.0"
graphene-file-upload = "1.3.0"
django-haystack = {extras = ["elasticsearch"], version = "^3.2.1"}
graphene = "3.2.1"
django-storages = {extras = ["google"], version = "^1.13.2"}
google-api-python-client = "^2.83.0"
django-jazzmin = "^2.6.0"
django-extensions = "^3.2.1"
django-ordered-model = "^3.7.4"
google-cloud-bigquery = "^3.11.3"
faker = "^19.6.1"
loguru = "^0.7.2"
huey = "^2.5.0"
redis = "^5.0.1"
pandas = "^2.1.1"
pandas-gbq = "^0.19.2"
google-cloud-storage = "^2.11.0"
stripe = "^4.2.0"
dj-stripe = "^2.8.3"
pydantic = "^2.5.3"
requests = "^2.31.0"
tqdm = "^4.66.4"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
ruff = "^0.2.0"
yamlfix = "^1.16.0"
shandy-sqlfmt = "^0.20.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.1.0"
pytest-django = "^4.5.2"
[tool.poetry.scripts]
lint = "scripts.lint:main"
test = "scripts.test:main"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"