forked from openstates/openstates-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.38 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
[tool.poetry]
name = "openstates"
version = "6.11.1"
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-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-scrape = 'openstates.cli.scrape: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"
pytz = "^2019.3"
click = "^8.0"
attrs = "^20.2.0"
us = "^2.0.2"
PyYAML = "^5.3.1"
textract = "^1.6"
chardet = "^3.0"
pydantic = "^1.8.2"
boto3 = "^1.17.79"
spatula = ">=0.8.9,<1.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"}
black = "^20.8b1"
mypy = "^0.900"
types-pytz = "^2021.1.0"
types-click = "^7.1.2"
types-PyYAML = "^5.4.3"
types-requests = "^2.25.0"
[tool.coverage.run]
omit = [
"openstates/data/admin/*",
"openstates/utils/ansistrm.py",
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"