forked from move-coop/parsons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
173 lines (155 loc) · 4.6 KB
/
pyproject.toml
File metadata and controls
173 lines (155 loc) · 4.6 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
[build-system]
requires = [ "setuptools" ]
build-backend = "setuptools.build_meta"
[project]
name = "parsons"
version = "5.2.0"
description = "A python library of connectors for the progressive community."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license-files = [ "LICENSE.md" ]
authors = [
{ name = "The Movement Cooperative", email = "info@movementcooperative.org" },
]
maintainers = [
{ name = "Shauna Gordon-McKeon" },
]
keywords = [ "PROGRESSIVE", "API", "ETL" ]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [
"dependencies",
"optional-dependencies",
]
[project.urls]
homepage = "https://www.parsonsproject.org/"
documentation = "https://move-coop.github.io/parsons/html/stable/index.html"
releasenotes = "https://github.com/move-coop/parsons/releases"
funding = "https://secure.actblue.com/donate/parsonsproject?refcode=parsonswebsite"
issues = "https://github.com/move-coop/parsons/issues"
github = "https://github.com/move-coop/parsons"
repository = "https://github.com/move-coop/parsons.git"
[tool.setuptools]
packages = ["parsons"]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
include = [
"**/*.py",
]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
# Default line length is 88
# Changed to 100 to match previous pyproject black config
line-length = 100
indent-width = 4
# Assume Python 3.9
target-version = "py39"
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = [
"B", # flake8-bugbear (B)
"E", # pycodestyle errors (E)
"W", # pycodestyle warnings (W)
"C4", # flake8-comprehensions (C4)
"F", # Pyflakes (F)
"UP", # pyupgrade (UP)
"I", # isort (I)
"TID", # flake8-tidy-imports (TID)
"ICN", # flake8-import-conventions (ICN)
"Q", # flake8-quotes (Q)
"TC", # flake8-type-checking (TC)
"YTT", # flake8-2020 (YTT)
"SIM", # flake8-simplify (SIM)
"PTH", # flake8-use-pathlib (PTH)
"ISC", # flake8-implicit-str-concat (ISC)
"PT", # flake8-pytest-style (PT)
]
ignore = [
"E501", # line-too-long (E501)
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
# Enable auto-formatting of code examples in docstrings. Markdown,
# reStructuredText code/literal blocks and doctests are all supported.
#
# This is currently disabled by default, but it is planned for this
# to be opt-out in the future.
docstring-code-format = false
# Set the line length limit used when formatting code snippets in
# docstrings.
#
# This only has an effect when the `docstring-code-format` setting is
# enabled.
docstring-code-line-length = "dynamic"
[tool.pytest.ini_options]
addopts = "-rf --cov=parsons --no-cov-on-fail -n auto"
testpaths = [
"test",
]
filterwarnings = [
# Warnings triggered by libraries we use (not our own code)
"ignore:invalid escape sequence:SyntaxWarning", # typically due to using "/" in docstrings that aren't raw strings
"ignore:invalid escape sequence:DeprecationWarning", # typically due to using "/" in docstrings that aren't raw strings
"ignore:Use ProtectionLevel enum instead:DeprecationWarning", # braintree throws these
"ignore:Use protection_level parameter instead:DeprecationWarning", # braintree throws these
"ignore:Argument login_or_token is deprecated:DeprecationWarning",
]
[tool.isort]
profile = "hug"
src_paths = [
"parsons/",
"test/",
"useful_resources/",
]
[tool.coverage.run]
branch = true
relative_files = true
[tool.coverage.paths]
source = [
"parsons/",
]