-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 940 Bytes
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
[tool.poetry]
name = "macrovan"
version = "0.1.0"
description = "Macrovan automation tools for voter data management"
authors = ["Your Name <your.email@example.com>"]
readme = "README.md"
# This allows Poetry to find modules in both the root and the app folder
packages = [{include = "app"}, {include = "test_poetry_setup.py"}]
[tool.poetry.dependencies]
python = "^3.11"
pandas = ">=2.2.2"
selenium = "^4.10.0"
requests = "^2.31.0"
pypdf = "^6.5.0"
webdriver-manager = "^4.0.0"
numpy = "<2.0"
keyring = "^25.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.3.0"
flake8 = "^6.0.0"
mypy = "^1.3.0"
deptry = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# Testing
test-poetry = "test_poetry_setup:main"
# VoteBuilder Automations
vat = "app.macrovat:main"
print-lists = "app.print_VBM_targets:main"
mail-prints = "app.mail_in_voter_prints:main"