-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
178 lines (149 loc) · 5.61 KB
/
pyproject.toml
File metadata and controls
178 lines (149 loc) · 5.61 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
174
175
176
177
178
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fpl_wrapper"
dynamic = ["version"]
description = "Wrapper for the Fantasy Premier League API."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = []
authors = [{ name = "Sam King", email = "ag3nt.p0lyblnk@gmail.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["httpx", "coverage[toml]", "pydantic", "loguru"]
[tool.hatch.envs.default]
installer = "uv"
[project.urls]
Documentation = "https://github.com/agent-polyblank/fpl-wrapper#readme"
Issues = "https://github.com/agent-polyblank/fpl-wrapper#issues"
Source = "https://github.com/agent-polyblank/fpl-wrapper"
[tool.hatch.envs.test]
dependencies = ["pytest", "pytest-cov", "pytest-mock"]
[tool.hatch.envs.docs]
dependencies = ["pdoc"]
[tool.hatch.version]
path = "src/fpl_wrapper/__about__.py"
[tool.hatch.envs.types]
extra-dependencies = ["mypy>=1.0.0"]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:src/python_project_template tests}"
[tool.coverage.run]
source_pkgs = ["fpl_wrapper", "tests"]
branch = true
parallel = true
omit = ["src/fpl_wrapper/__about__.py", "tests/*", "**/__init__.py"]
[tool.hatch.envs.test.scripts]
test = "pytest {args:tests}"
cov-xml = "pytest {args:tests} --cov=src/{{cookiecutter.cli_name}} --cov-report=xml:cov.xml"
cov-html = "pytest {args:tests} --cov=src/{{cookiecutter.cli_name}} --cov-report=html:htmlcov"
[tool.coverage.paths]
fpl_wrapper = ["src/fpl_wrapper", "*/fpl_wrapper/src/fpl_wrapper"]
tests = ["tests", "*/fpl_wrapper/tests"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
[tool.hatch.envs.docs.scripts]
build = "python -m pdoc src/fpl_wrapper --output-dir docs"
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
[project.scripts]
fpl_get_bootstrap = "fpl_wrapper.entry_points:get_bootstrap_data_entry"
fpl_get_fixtures = "fpl_wrapper.entry_points:get_fixtures_entry"
fpl_get_league_data = "fpl_wrapper.entry_points:get_league_data_entry"
fpl_get_manager_gw_data = "fpl_wrapper.entry_points:get_manager_gw_data_entry"
fpl_get_players = "fpl_wrapper.entry_points:get_players_entry"
fpl_get_player = "fpl_wrapper.entry_points:get_player_entry"
fpl_get_teams = "fpl_wrapper.entry_points:get_teams_entry"
fpl_get_all_player_detail = "fpl_wrapper.entry_points:get_all_player_detail_entry"
fpl_get_gameweek_data_for_each_manager_for_each_gameweek = "fpl_wrapper.entry_points:get_gameweek_data_for_each_manager_for_each_gameweek_entry"
fpl_get_league_standings = "fpl_wrapper.entry_points:get_league_standings_entry"
fpl_get_manager_data_entry = "fpl_wrappper.entry_points:get_manager_data_entry"
fpl_get_manager_full_data_from_league_entry = "fpl_wrappper.entry_points:get_manager_full_data_from_league_entry"
fpl_get_all_managers_in_league_entry = "fpl_wrappper.entry_points:get_all_managers_in_league_entry"
fpl_get_gw_live_data_entry = "fpl_wrapper.entry_points:get_gw_live_data_entry"
# resources
fpl_get_player_photos = "fpl_wrapper.entry_points:get_player_photos_entry"
fpl_get_all_player_photos = "fpl_wrapper.entry_points:get_player_photos_all_entry"
fpl_get_team_crest = "fpl_wrapper.entry_points:get_team_crest_entry"
fpl_get_all_team_crests = "fpl_wrapper.entry_points:get_all_team_crests_entry"
fpl_get_team_shirts = "fpl_wrapper.entry_points:get_team_shirt_entry"
fpl_get_all_team_shirts = "fpl_wrapper.entry_points:get_all_team_shirts_entry"
fpl_get_full_manager_data_for_league = "fpl_wrapper.entry_points:get_full_manager_data_for_league_entry"
fpl_get_full_manager_data_for_league_max_pages = "fpl_wrapper.entry_points:get_full_manager_data_for_league_max_pages_entry"
[tool.ruff]
# Exclude a variety of commonly ignored directories.
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",
"venv",
"tests",
"__init__.py",
]
# Same as Black.
line-length = 80
indent-width = 4
# Assume Python 3.12
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D203", "D212", "COM812", "ISC001", "ANN101", "T203"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[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"
# Allow pytest to pick up source directory.
[tool.pytest.ini_options]
pythonpath = [".", "src"]