-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 922 Bytes
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
[tool.poetry]
name = "krakenpy"
version = "0.1.4"
description = "krakenpy is tool in which we integrated kraken crypto exchange API"
authors = ["Sheikh Haris Zahid"]
readme = "README.md"
homepage = "https://github.com/Sheikhharis50/krakenpy"
repository = "https://github.com/Sheikhharis50/krakenpy"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
keywords = ["kraken", "kraken-api", "python", "crypto"]
packages = [{include = "krakenpy"}]
[tool.poetry.dependencies]
python = "^3.10"
krakenex = "^2.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
requests-mock = "^1.10.0"
black = "^23.3.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"