File size: 553 Bytes
b339b93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "dime-converter"
version = "1.0.0"
description = "Robust CSV to Parquet converter for DIME campaign finance data"
requires-python = ">=3.13"
dependencies = [
    "pyarrow>=15.0.0",
    "duckdb>=1.0.0",
]

[project.scripts]
dime-converter = "dime_converter.cli:main"
contribution-filters = "contribution_filters.cli:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["dime_converter", "contribution_filters"]

[dependency-groups]
dev = [
    "pytest>=9.0.2",
]