-
Notifications
You must be signed in to change notification settings - Fork 199
/
pyproject.toml
65 lines (59 loc) · 1.9 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
65
[tool.poetry]
name = "trading-ig"
version = "0.0.22"
description = "A lightweight Python wrapper for the IG Markets API"
authors = ["Femto Trader <femto.trader@gmail.com>", "Andy Geach <andy@bugorfeature.net>"]
maintainers = ["Andy Geach <andy@bugorfeature.net>"]
license = "BSD-3-Clause"
readme = "README.rst"
homepage = "https://github.com/ig-python/trading-ig"
repository = "https://github.com/ig-python/trading-ig"
documentation = "https://trading-ig.readthedocs.io/"
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
requests = "^2.24"
pycryptodome = "^3.9"
requests-cache = "^0.5"
six = "^1.15"
lightstreamer-client-lib = "^1.0.3"
pandas = { version = "^1", optional = true }
munch = { version = "^2.5", optional = true }
tenacity = {version = "^8", optional = true}
[tool.poetry.extras]
pandas = ["pandas"]
munch = ["munch"]
tenacity = ["tenacity"]
sphinx = ["sphinx"]
docs = [
"sphinx"
]
[tool.poetry.group.dev.dependencies]
flake8 = "^3.9"
pytest = "^6.2"
responses = "^0.12"
coveralls = "^3.2"
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
importlib-metadata = "==4.13.0"
black = "23.3.0"
[tool.poetry.urls]
"Issues" = "https://github.com/ig-python/trading-ig/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"