-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (60 loc) · 1.74 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
[tool.poetry]
name = "the-odds"
version = "1.0.2"
description = "The-Odds-APi.com Client (unofficial)."
authors = ["Corey Schaf <[email protected]>"]
readme = "README.md"
packages = [{include = "the_odds"}]
license = "MIT"
homepage = "https://github.com/coreyjs/data-golf-api"
repository = "https://github.com/coreyjs/data-golf-api"
keywords = [ "sports", "odds", "betting", "NHL", "NFL", "sports-betting", "odds-fetching", "sports-analytics", "sports-odds", "odds-calculator", "betting-odds", "game-odds", "sports-data", "odds-api", "hockey", "football", "live-odds", "sports-metrics", "daily-fantasy", "sports-stats"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
pytest="^7.1.3"
pytest-mock = "*"
mypy = "*"
ruff = "*"
black = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
line-length = 121