-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (59 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nad_ch"
version = "0.1.0"
description = "10x National Address Database Submission Tool (NAD-ST)"
authors = []
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
sqlalchemy = "^2.0.23"
python-dotenv = "^1.0.0"
flask = "^3.0.1"
boto3 = "^1.34.25"
psycopg2-binary = "^2.9.9"
celery = "^5.3.6"
redis = "^5.0.1"
alembic = "^1.13.1"
botocore = "^1.34.30"
fiona = "^1.9.5"
pandas = "^2.2.0"
geopandas = "^0.14.2"
pyarrow = "^15.0.0"
shapely = "^2.0.2"
flask-login = "^0.6.3"
requests = "^2.31.0"
pyjwt = "^2.8.0"
pyyaml = "^6.0.1"
pyshp = "^2.3.1"
minio = "^7.2.5"
authlib = "^1.3.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
flake8 = "^6.1.0"
coverage = "^7.3.2"
pytest-mock = "^3.12.0"
black = "^24.3.0"
pytest-env = "^1.1.3"
[tool.poetry.scripts]
cli = "nad_ch.main:run_cli"
format = "scripts.format:main"
lint = "flake8.main.cli:main"
migrate_down = "scripts.migrate_down:main"
migrate_up = "scripts.migrate_up:main"
seed = "scripts.seed:main"
start-web = "nad_ch.main:serve_flask_app"
test = "pytest:main"
[tool.pytest_env]
APP_ENV="test"
DATABASE_URL="sqlite:///:memory:"
QUEUE_BROKER_URL="memory://"
QUEUE_BACKEND_URL="cache+memory://"
LOCAL_ALLOWED_DOMAIN = "test.org"
[tool.flake8]
max-line-length = 88
[tool.black]
line-length = 88
include = '\.pyi?$'