-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (43 loc) · 1.11 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
[tool.poetry]
name = "local-intelligence-hub"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
Django = "4.2.15"
django-bootstrap5 = "^22.1"
django-environ = "^0.9.0"
django-sslserver = "^0.22"
psycopg2 = "^2.9.3"
django-libsass = "^0.9"
requests-cache = "^0.9.6"
Pillow = "^10.3.0"
python-magic = "^0.4.27"
tqdm = "^4.66.3"
pandas = "^1.5.1"
openpyxl = "^3.0.10"
mysoc-dataset = "^0.3.0"
django-jsonform = "^2.15.0"
lxml = "^4.9.2"
beautifulsoup4 = "^4.11.1"
mailchimp-marketing = {git = "https://github.com/mailchimp/mailchimp-marketing-python.git"}
geopandas = "^0.14.4"
pyarrow = "^16.1.0"
numpy = "1.26.4"
[tool.poetry.dev-dependencies]
django-debug-toolbar = "^3.7.0"
black = "^24.3.0"
coverage = "^6.5.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "hub"
known_django = "django"
sections = ["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
extend_skip = ["migrations"]