forked from Th0rgal/binance.py
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (35 loc) · 1.18 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "exchanges-wrapper"
authors = [{name = "Thomas Marchand", email = "thomas.marchand@tuta.io"}, {name = "Jerry Fedorenko", email = "jerry.fedorenko@yahoo.com"}]
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers=["Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS"]
dynamic = ["version", "description"]
requires-python = ">=3.9"
dependencies = [
"crypto-ws-api==2.0.14",
"pyotp==2.9.0",
"simplejson==3.19.3",
"toml~=0.10.2",
"aiohttp~=3.10.5",
"websockets==13.0.1",
"expiringdict~=1.2.2",
"ujson~=5.10.0",
"betterproto==2.0.0b6",
"grpclib~=0.4.7"
]
[tool.flit.module]
name = "exchanges_wrapper"
[project.urls]
Source = "https://github.com/DogsTailFarmer/exchanges-wrapper"
[project.scripts]
exchanges-wrapper-init = "exchanges_wrapper.__init__:init"
exchanges-wrapper-srv = "exchanges_wrapper.exch_srv:main"