-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.26 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
[project]
name = "binance-ema"
version = "1.0.1"
description = "Get crypto coin informations & calculate the custom or constant indicators. (WITH BINANCE API)"
package-mode = true
license = { file = "LICENSE" }
readme = "README.md"
keywords=["Binance", "Public API","EMA","MACD","TRADE","Crypto","Coin","Indicators","BTC","ETH","USDT"]
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
]
authors = [
]
maintainers = [
]
requires-python = ">=3.10"
dependencies = [
"binance-connector (==1.10.0)",
"pre-commit (>=4.0.1,<5.0.0)"
]
[tool.poetry]
packages = [
{ include = "binancema", from = "src" }
]
[project.urls]
homepage = "https://github.com/emrementese/binance-ema"
"Github" = "https://github.com/emrementese"
"Source" = "https://github.com/emrementese/binance-ema"
"Download" = "https://pypi.org/project/binance-ema/#files"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"