2024-03-29 07:34:00 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools >= 64.0.0", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
2024-03-29 08:00:22 +00:00
|
|
|
name = "freqtrade-client"
|
2024-03-29 07:34:00 +00:00
|
|
|
dynamic = ["version"]
|
|
|
|
|
|
|
|
authors = [
|
|
|
|
{name = "Freqtrade Team"},
|
|
|
|
{name = "Freqtrade Team", email = "freqtrade@protonmail.com"},
|
|
|
|
]
|
|
|
|
|
|
|
|
description = "Freqtrade - Client scripts"
|
2024-03-29 08:00:22 +00:00
|
|
|
readme = "README.md"
|
2024-03-29 07:34:00 +00:00
|
|
|
requires-python = ">=3.9"
|
|
|
|
license = {text = "GPLv3"}
|
|
|
|
# license = "GPLv3"
|
|
|
|
classifiers = [
|
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: Unix",
|
|
|
|
"Topic :: Office/Business :: Financial :: Investment",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
'requests >= 2.26.0',
|
|
|
|
'python-rapidjson >= 1.0',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/freqtrade/freqtrade"
|
|
|
|
Documentation = "https://freqtrade.io"
|
|
|
|
"Bug Tracker" = "https://github.com/freqtrade/freqtrade/issues"
|
|
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
2024-03-29 15:38:13 +00:00
|
|
|
freqtrade-client = "freqtrade_client.ft_client:main"
|
2024-03-29 07:34:00 +00:00
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["."]
|
|
|
|
include = ["freqtrade_client*"]
|
|
|
|
exclude = ["tests", "tests.*"]
|
|
|
|
namespaces = true
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {attr = "freqtrade_client.__version__"}
|