-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
68 lines (62 loc) · 1.73 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
67
68
[tool.poetry]
name = "openstates"
version = "6.20.12"
description = "core infrastructure for the openstates project"
authors = ["James Turk <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
os-update = 'openstates.cli.update:main'
os-initdb = 'openstates.cli.initdb:main'
os-dbmakemigrations = 'openstates.cli.makemigrations:main'
os-update-computed = 'openstates.cli.update_computed:main'
os-text-extract = 'openstates.cli.text_extract:main'
os-people = 'openstates.cli.people:main'
os-committees = 'openstates.cli.committees:main'
os-us-to-yaml = 'openstates.cli.convert_us:main'
os-relationships = 'openstates.cli.relationships:main'
os-scrape = 'openstates.cli.scrape:main'
os-validate = 'openstates.cli.validate:main'
[tool.poetry.dependencies]
python = "^3.9"
psycopg2-binary = "^2.8.4"
dj_database_url = "^0.5.0"
Django = "3.2.14"
scrapelib = "^2.0.7"
jsonschema = "^3.2.0"
click = "^8.0"
attrs = "^20.2.0"
PyYAML = "^6.0"
textract = "^1.6"
chardet = "^3.0"
pydantic = "^1.8.2"
spatula = ">=0.8.9,<1.0"
PyJWT = "^2.5.0"
boto3 = "^1.26.61"
us = "^3.1.1"
influxdb-client = "^1.37.0"
pytz = "^2024.1"
google-cloud-storage = "^2.18.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
pytest-django = "^3.8.0"
coveralls = "^1.11.1"
flake8 = "^3.7.9"
coverage = {extras = ["toml"], version = "^5.0.4"}
mypy = "^0.900"
types-pytz = "^2021.1.0"
types-click = "^7.1.2"
types-PyYAML = "^5.4.3"
types-requests = "^2.28.11.5"
black = "^22.10.0"
[tool.poetry.group.dev.dependencies]
types-jsonschema = "^4.17.0.3"
types-influxdb-client = "^1.37.0.0"
[tool.coverage.run]
omit = [
"openstates/data/admin/*",
"openstates/utils/ansistrm.py",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"