-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
63 lines (58 loc) · 1.49 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flumine"
description = "Betting trading framework"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{ name = "Liam Pauling", email = "a@unknown.com" },
]
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 = [
"betfairlightweight==2.20.4",
"tenacity>=7.0.0,<8.3.1",
"python-json-logger==2.0.7",
"requests",
"betconnect==0.2.1",
"smart-open>=6,<8",
]
dynamic = ["version"]
[project.optional-dependencies]
speed = [
"betfairlightweight[speed]==2.20.4"
]
test = [
"black==24.8.0",
"coverage",
"pre-commit",
"mkdocs",
"mkdocs-material",
"build",
"twine",
]
[project.urls]
Homepage = "https://github.com/betcode-org"
Documentation = "https://betcode-org.github.io/flumine/"
Repository = "https://github.com/betcode-org/flumine.git"
"Bug Tracker" = "https://github.com/betcode-org/flumine/issues"
Changelog = "https://github.com/betcode-org/flumine/blob/master/HISTORY.rst"
[tool.hatch.version]
path = "flumine/__version__.py"
[tool.hatch.build.targets.sdist]
include = [
"/flumine",
"/HISTORY.rst",
"/README.md",
"/tests",
]