-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.34 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
[project]
name = "hansards-back"
version = "0.1.0"
description = "Digital Parliament Hansard Backend"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "GovTech Malaysia", email = "support@mydigital.gov.my"},
]
keywords = ["parliament", "hansard", "malaysia", "government"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"django>=5.1.4",
"djangorestframework>=3.15.2",
"django-cors-headers>=4.6.0",
"django-extensions>=3.2.3",
"django-postgres-copy>=2.7.6",
"django-redis>=5.4.0",
"pymemcache>=4.0.0",
"psycopg2-binary>=2.9.10",
"dj-database-url>=2.3.0",
"pydantic>=2.10.3",
"pydantic-settings>=2.6.1",
"python-dotenv>=1.0.1",
"pandas>=2.2.3",
"scikit-learn>=1.6.0",
"gunicorn>=23.0.0",
"openai>=1.51.0",
]
[project.optional-dependencies]
dev = [
"pip-tools>=7.3.0",
"black>=23.7.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"pre-commit>=3.3.3",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88