-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
72 lines (67 loc) · 1.9 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
[build-system]
requires = ["uv_build>=0.11.6,<0.12.0"]
build-backend = "uv_build"
[project]
name = "trading-ig"
version = "0.0.24"
description = "A lightweight Python wrapper for the IG Markets API"
authors = [
{ name = "Femto Trader", email = "femto.trader@gmail.com" },
{ name = "Andy Geach", email = "andy@bugorfeature.net" },
]
requires-python = ">=3.10,<4"
readme = "README.rst"
license = "BSD-3-Clause"
maintainers = [
{ name = "Andy Geach", email = "andy@bugorfeature.net" }
]
keywords = [
"trading",
"spread betting",
"CFDs",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"requests>=2.24,<3",
"pycryptodome>=3.9,<4",
"requests-cache>=0.5,<0.6",
"six>=1.15,<2",
"lightstreamer-client-lib==1.0.3",
]
[project.optional-dependencies]
pandas = ["pandas>=2,<3"]
munch = ["munch>=2.5,<3"]
tenacity = ["tenacity>=8,<9"]
[project.urls]
Homepage = "https://github.com/ig-python/trading-ig"
Repository = "https://github.com/ig-python/trading-ig"
Documentation = "https://trading-ig.readthedocs.io/"
Issues = "https://github.com/ig-python/trading-ig/issues"
[dependency-groups]
dev = [
"ruff",
"pytest>=8,<9",
"responses>=0.25,<0.26",
"coveralls>=3,<4",
"sphinx",
"sphinx-rtd-theme",
]
[tool.uv.build-backend]
module-name = "trading_ig"
module-root = ""