-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (31 loc) · 965 Bytes
/
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
[tool.poetry]
name = "binanceus-python"
version = "0.1.0"
description = "A lightweight Python wrapper for the binance.us public API."
authors = ["Nenye Ndili <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nenyehub/binanceus-python"
keywords = ["Binance", "trading", "crypto"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "rest_bs", from = "src" },
{ include = "websocket_bs", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
websocket-client = "^1.3.1"
binance-connector = "^1.11.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"