-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 1.87 KB
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
69
70
71
72
73
74
75
76
[tool.poetry]
name = "backend"
version = "0.0.1"
description = "Base dos Dados API"
authors = ["Gabriel Gazola Milan <gabriel.gazola@poli.ufrj.br>", "Guilherme Peres <contact@gperes.dev>"]
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"
dj-stripe = "^2.8.3"
Django = "^4.1.3"
django-admin-inline-paginator-plus = "^0.1.4"
django-cors-headers = "^3.13.0"
django-extensions = "^3.2.1"
django-filter = "^22.1"
django-graphql-jwt = "^0.3.4"
django-haystack = {extras = ["elasticsearch"], version = "^3.2.1"}
django-health-check = "^3.17.0"
django-jazzmin = "^2.6.0"
django-modeltranslation = "^0.18.8"
django-ordered-model = "^3.7.4"
django-storages = {extras = ["google"], version = "^1.13.2"}
faker = "^19.6.1"
google-api-python-client = "^2.83.0"
google-cloud-bigquery = "^3.11.3"
google-cloud-storage = "^2.11.0"
graphene = "3.2.1"
graphene-django = "3.0.0"
graphene-file-upload = "1.3.0"
gunicorn = {extras = ["gevent"], version = "^23.0.0"}
huey = "^2.5.0"
loguru = "^0.7.2"
pandas = "^2.1.1"
pandas-gbq = "^0.19.2"
pillow = "^9.4.0"
psycopg2-binary = "^2.9.5"
pydantic = "^2.5.3"
redis = "^5.0.1"
requests = "^2.31.0"
stripe = "^4.2.0"
tqdm = "^4.66.4"
gql = "^4.0.0"
requests-toolbelt = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^7.1.0"
pre-commit = "^3.3.3"
python-dotenv = "^1.2.1"
ruff = "^0.14.9"
shandy-sqlfmt = "^0.28.2"
yamlfix = "^1.16.0"
[tool.poetry.group.test.dependencies]
pytest = "^9.0.2"
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"]
[tool.yamlfix]
preserve_quotes = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"