-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
135 lines (122 loc) · 3.2 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
124
125
126
127
128
129
130
131
132
133
134
135
[tool.poetry]
name = "circuit-maintenance-parser"
version = "2.7.0"
description = "Python library to parse Circuit Maintenance notifications and return a structured data back"
authors = ["Network to Code <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/networktocode/circuit-maintenance-parser"
repository = "https://github.com/networktocode/circuit-maintenance-parser"
readme = "README.md"
keywords = ["parser", "circuit", "maintenance"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
include = [
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.9"
click = ">=7.1, <9.0"
pydantic = ">=1.10.4,<3"
icalendar = "^5.0.0"
bs4 = "^0.0.2"
lxml = {version = ">= 4.6.2, < 6"}
geopy = "^2.1.0"
timezonefinder = "^6.0.1"
backoff = "^1.11.1"
chardet = "^5"
openai = { version = ">=1.2.4", optional = true }
openpyxl = { version = "^3.1.5", optional = true }
pandas = { version = "^2.2.3", optional = true }
python-dateutil = "^2.9.0"
[tool.poetry.extras]
xlsx = [
"openpyxl",
"pandas",
]
openai = [
"openai",
]
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
requests_mock = "^1.7.0"
pyyaml = "^6.0"
black = "^22.3.0"
pylint = "^2.4.4"
pydocstyle = "^6.0.0"
yamllint = "^1.20.0"
bandit = "^1.6.2"
invoke = "^2.2.0"
flake8 = "^5.0.0"
mypy = "^1.8.0"
# Dependencies for mypy to correctly analyze code using these libraries
types-python-dateutil = "^2.8.3"
types-pytz = "^2022.0.0"
types-toml = "^0.10.1"
netconan = "^0.12.3"
toml = "0.10.2"
types-chardet = "^5.0.4"
[tool.poetry.scripts]
circuit-maintenance-parser = "circuit_maintenance_parser.cli:main"
[tool.poetry.group.dev.dependencies]
pandas-stubs = "2.2.2.240603"
coverage = "^7.6.12"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| settings.py # This is where you define files that should not be stylized by black
# the root of the project
)
'''
[tool.pylint.master]
ignore-patterns=[".venv"]
[tool.pylint.basic]
# No docstrings required for private methods (Pylint default), or for test_ functions, or for inner Meta classes.
no-docstring-rgx="^(_|test_|Meta$)"
extension-pkg-whitelist = [
"pydantic",
]
[tool.pylint.messages_control]
# Line length is enforced by Black, so pylint doesn't need to check it.
# Pylint and Black disagree about how to format multi-line arrays; Black wins.
disable = """,
line-too-long,
duplicate-code,
"""
[tool.pylint.miscellaneous]
# Don't flag TODO as a failure, let us commit with things that still need to be done in the code
notes = """,
FIXME,
XXX,
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
python_paths = "./"
addopts = "-vv --doctest-modules"
[tool.mypy]
plugins = [
"pydantic.mypy"
]