-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 1.7 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
[project]
name = "mplads"
version = "0.1.0"
description = "MPLADS (Member of Parliament Local Area Development Scheme) data pipeline and analytics"
readme = "README.md"
requires-python = ">=3.14"
license = { text = "MIT" }
authors = [{ name = "Gaurav Sood" }]
keywords = ["mplads", "india", "parliament", "mp", "government", "spending", "analytics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"requests>=2.31",
"urllib3>=2.0",
"pandas>=2.0",
"rapidfuzz>=3.0",
"tqdm>=4.66",
"matplotlib>=3.10.9",
"seaborn>=0.13.2",
"jupyter>=1.1.1",
"nbclient>=0.10.4",
"statsmodels>=0.14.6",
"lifelines>=0.29.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.8",
"mypy>=1.10",
"pydoclint>=0.5",
"types-requests>=2.31",
"types-tqdm>=4.66",
"pandas-stubs>=2.0",
]
[project.urls]
Homepage = "https://github.com/soodoku/mplads"
Repository = "https://github.com/soodoku/mplads"
Issues = "https://github.com/soodoku/mplads/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.14"
warn_return_any = true
warn_unused_ignores = true
strict = true
ignore_missing_imports = true
[tool.pydoclint]
style = "google"
arg-type-hints-in-docstring = false
check-return-types = false