-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (42 loc) · 1.04 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
41
42
43
44
45
46
47
48
[tool.poetry]
name = "crypto-com-ai-agent-client"
version = "1.0.5"
description = "A python client to interact with the crypto.com AI agent service"
authors = ["Ric Arcifa <[email protected]>"]
license = "MIT"
keywords = ["agent", "blockchain", "crypto.com", "AI", "CDC"]
readme = "README.md"
homepage = "https://github.com/crypto-com/cdc-ai-agent-client-py"
repository = "https://github.com/crypto-com/cdc-ai-agent-client-py"
documentation = "https://github.com/crypto-com/cdc-ai-agent-client-py"
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.32.3"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
flake8 = "^7.1.1"
black = "^24.8.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.tox
| \.venv
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
[tool.poetry.scripts]
cdc-ai-agent-client = "cdc_ai_agent_client.cli:main"