-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 1.04 KB
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
[tool.poetry]
name = "ftxusderivatives-python"
version = "0.1.2"
description = "An unofficial Python wrapper for the REST and WebSocket APIs of FTX US Derivatives, formerly known as LedgerX."
authors = ["Nenye Ndili <nenye@ndili.net>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/nenyehub/ftxusderivatives-python"
repository = "https://github.com/nenyehub/ftxusderivatives-python"
keywords = ["FTX", "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_lx", from = "src" },
{ include = "websocket_lx", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
websocket-client = "^1.3.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"