-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.19 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
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "whitebit-python-sdk"
version = "1.1.17"
description = "A Python SDK for WhiteBit cryptocurrency exchange API"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
keywords = ["whitebit", "cryptocurrency", "exchange", "api", "sdk", "trading"]
authors = [
{name = "WhiteBit SDK Team"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"requests>=2.28.1,<3.0.0",
"websockets>=10.4,<11.0",
"responses>=0.23.1",
"urllib3>=1.26.15,<2.0.0",
"pydantic>=1.10.0,<3.0.0",
"httpx>=0.23.0,<1.0.0",
]
[project.urls]
Homepage = "https://www.whitebit.com"
Repository = "https://github.com/whitebit-exchange/python-sdk"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
include = ["whitebit*"]
namespaces = false
[tool.setuptools.package-data]
whitebit = ["py.typed"]