-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.96 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "api2trade-sdk"
version = "1.0.0"
description = "Official Python SDK for the API2Trade MetaTrader REST API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "API2Trade", email = "support@api2trade.com" },
]
keywords = [
"metatrader", "mt4", "mt5", "forex", "trading", "api",
"rest", "sdk", "api2trade", "broker", "algorithmic-trading",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3",
"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",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.28.0",
"urllib3>=1.26.0",
]
[project.optional-dependencies]
streaming = [
"websockets>=11.0",
]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"python-dotenv>=1.0",
"websockets>=11.0",
]
[project.urls]
Homepage = "https://www.api2trade.com/"
Documentation = "https://docs.metatraderapi.dev/docs"
Repository = "https://github.com/api2trade/API2Trade.com-MetatraderAPI-Python-SDK"
"Bug Tracker" = "https://github.com/api2trade/API2Trade.com-MetatraderAPI-Python-SDK/issues"
Changelog = "https://github.com/api2trade/API2Trade.com-MetatraderAPI-Python-SDK/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["api2trade_sdk*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.isort]
profile = "black"
known_third_party = ["requests", "websockets"]
known_first_party = ["api2trade_sdk"]