-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
123 lines (92 loc) · 2.4 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[tool.poetry]
name = "allusgov"
version = "0.0"
description = "This project attempts to map the organization of the US Federal Government by gathering and consolidating information from various directories."
packages = [{ include = "allusgov" }]
license = "GPL-3.0-or-later"
authors = ["Owen Barton <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/allusgov"
repository = "https://github.com/civicactions/allusgov"
keywords = [
]
classifiers = [
# TODO: update this list to match your application: https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
click = "*"
scrapy = "^2.8.0"
polars = "^0.16.18"
xlsx2csv = "^0.8.1"
python-dotenv = "^1.0.0"
networkx = {extras = ["default"], version = "^3.0"}
bigtree = {extras = ["image"], version = "^0.9.1"}
flatten-json = "^0.1.13"
rapidfuzz = "^2.15.0"
click-log = "^0.4.0"
natsort = "^8.3.1"
spacy = "^3.5.1"
beautifulsoup4 = "^4.12.2"
questionary = "^1.10.0"
nltk = "^3.8.1"
lxml = "^4.9.2"
[tool.poetry.dev-dependencies]
# Formatters
black = "^22.1"
tomli = "*" # missing 'black' dependency
isort = "^5.10"
# Linters
mypy = "^1.0"
pydocstyle = "^6.1"
pylint = "~2.15"
wrapt = "*" # missing 'pylint' dependency
# Testing
pytest = "^7.1"
pytest-describe = "^2.0"
pytest-expecter = "^3.0"
pytest-random = "*"
pytest-cov = "^4.0"
freezegun = "*"
# Reports
coveragespace = "^6.0"
# Documentation
# Tooling
pyinstaller = "*"
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
ipython = "^7.12.0"
[tool.poetry.scripts]
allusgov = "allusgov.cli:main"
[tool.poetry.group.dev.dependencies]
tabula-py = "^2.7.0"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true
cache_dir = ".cache/mypy/"
[tool.pytest.ini_options]
addopts = """
--strict-markers
-r sxX
--show-capture=log
--cov-report=html
--cov-report=term-missing:skip-covered
--no-cov-on-fail
"""
cache_dir = ".cache/pytest/"
markers = []
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"