-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
83 lines (71 loc) · 2.08 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
[build-system]
requires = ["setuptools==68.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "srpenergy"
version = "1.3.7"
license = {text = "MIT"}
description = "An unofficial Python module for interacting with Srp Energy data."
readme = "README.rst"
authors = [
{name = "Lamoreaux Lab", email = "info@golamoreaux.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities"
]
requires-python = ">=3.9"
dependencies = []
[project.urls]
"Homepage" = "https://github.com/lamoreauxlab/srpenergy-api-client-python"
"Source Code" = "https://github.com/lamoreauxlab/srpenergy-api-client-python.git"
"Bug Reports" = "https://github.com/lamoreauxlab/srpenergy-api-client-python/issues"
[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["srpenergy*"]
[tool.codespell]
skip = './.*,./.pyc,./docs/_build/*,./htmlcov/*'
count = true
quiet-level = 2
[tool.isort]
profile = "black"
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
known_first_party = "srpenergy,tests"
forced_separate = "tests"
combine_as_imports = true
# https://bandit.readthedocs.io/en/latest/config.html
[tool.bandit]
exclude = [".venv/*.*"]
exclude_dirs = [".venv"]
tests = ["B101", "B108", "B306", "B307", "B313", "B314", "B315", "B316", "B317", "B318", "B319", "B320", "B602", "B604"]
[tool.bandit.assert_used]
skips = ['*_test.py', '*/test_*.py']
# Used with flake8
[tool.pydocstyle]
match-dir='[^node_module].*'
[tool.rstcheck]
# report = "WARNING"
report_level = "INFO"
ignore = "docs/module.rst"
ignore_directives = ["automodule"]
[tool.pylint.MAIN]
py-version = "3.10"
jobs = 2
load-plugins = [
"pylint.extensions.code_style",
"pylint.extensions.typing"
]
persistent = false
fail-on = [
"I",
]
[tool.pylint.FORMAT]
expected-line-ending-format = "LF"