diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..60fa1e3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,62 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "mt5bridge-ccxt" +version = "0.1.0" +description = "CCXT-compatible wrapper for MT5Bridge HTTP API. Use MetaTrader 5 with Freqtrade, Jesse, Hummingbot, and any CCXT-aware framework." +readme = "README.md" +requires-python = ">=3.8" +license = {text = "MIT"} +authors = [ + {name = "gavindiaz"}, +] +keywords = ["mt5", "metatrader", "ccxt", "trading", "quant", "bridge", "forex"] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Financial and Insurance Industry", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "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 :: Investment", +] +dependencies = [ + "ccxt>=4.0.0", + "requests>=2.28.0", +] + +[project.optional-dependencies] +test = [ + "pytest>=7.0", + "pytest-mock>=3.10", + "responses>=0.23.0", +] +dev = [ + "black", + "flake8", + "mypy", + "pytest", + "pytest-cov", + "responses", +] + +[project.urls] +Homepage = "https://code.aifunny.ltd/gavindiaz/mt5bridge-ccxt" +"Bug Tracker" = "https://code.aifunny.ltd/gavindiaz/mt5bridge-ccxt/issues" + +[tool.setuptools.packages.find] +where = ["."] +include = ["mt5bridge_ccxt*"] +exclude = ["tests*", "examples*"] + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"] +python_classes = ["Test*"] +python_functions = ["test_*"]