-
Notifications
You must be signed in to change notification settings - Fork 152
/
pyproject.toml
58 lines (53 loc) · 1.39 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "betfairlightweight"
description = "Lightweight python wrapper for Betfair API-NG"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{ name = "Liam Pauling", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"requests<2.33.0",
]
dynamic = ["version"]
[project.optional-dependencies]
speed = [
"ciso8601==2.3.1",
"orjson==3.10.7",
]
test = [
"black==24.8.0",
"coverage",
"mkdocs",
"mkdocs-material",
"build",
"twine",
]
[project.urls]
Homepage = "https://github.com/betcode-org"
Documentation = "https://betcode-org.github.io/betfair/"
Repository = "https://github.com/betcode-org/betfair.git"
"Bug Tracker" = "https://github.com/betcode-org/betfair/issues"
Changelog = "https://github.com/betcode-org/betfair/blob/master/HISTORY.rst"
[tool.hatch.version]
path = "betfairlightweight/__version__.py"
[tool.hatch.build.targets.sdist]
include = [
"/betfairlightweight",
"/HISTORY.rst",
"/README.md",
"/tests",
]