forked from probberechts/soccerdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
98 lines (88 loc) · 2.3 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
[tool.poetry]
name = "soccerdata"
version = "0.0.2"
description = "A collection of wrappers over soccer data from various websites / APIs."
authors = ["Pieter Robberechts <[email protected]>"]
license = "Apache-2.0"
readme = 'README.rst'
homepage = "https://github.com/probberechts/soccerdata"
repository = "https://github.com/probberechts/soccerdata"
keywords = ["soccer", "football", "soccer data", "web scraping", "soccer analytics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
pandas = "^1.0"
requests = "^2.23"
unicode = "^2.7"
lxml = "^4.6"
fake_useragent = "^0.1.11"
selenium = "^4.0.0"
Unidecode = "^1.2.0"
rich = "^11.0.0"
pretty-errors = "^1.2.25"
PySocks = "^1.7.1"
html5lib = "^1.1"
undetected-chromedriver = "^3.1.3"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
mypy = "^0.931"
pylint = "^2.6.0"
pytest-deadfixtures = "^2.2.1"
unify = "^0.5"
black = "^21.12b0"
Sphinx = "^4.3.2"
sphinx-autobuild = "^2021.3.14"
furo = "^2022.0.0"
coverage = {version = "^6.2", extras = ["toml"]}
pre-commit = "^2.16.0"
flake8 = "^4.0.1"
flake8-bugbear = "^22.0.0"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.2.5"
pep8-naming = "^0.12.1"
darglint = "^1.8.1"
pre-commit-hooks = "^4.1.0"
Pygments = "^2.10.0"
time-machine = "^2.5.0"
pytest-mock = "^3.6.1"
bumpversion = "^0.6.0"
[tool.isort]
profile = "black"
src_paths = ["soccerdata", "tests"]
balanced_wrapping = true
default_section = "THIRDPARTY"
include_trailing_comma = true
known_first_party = ["soccerdata", "tests"]
line_length = 79
multi_line_output = 3
[tool.black]
line-length = 99
target-version = ['py38']
skip-string-normalization = 1
include = '\.pyi?$'
[tool.coverage.paths]
source = ["soccerdata", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["soccerdata"]
[tool.coverage.report]
show_missing = true
ignore_errors = true
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
check_untyped_defs = true
show_error_codes = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_untyped_defs = false
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"