-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 850 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
[project]
name = "netmind"
version = "0.1.10"
license = "MIT"
description = "The official Python library for the NetMind's API"
authors = [
{name = "yanrujing",email = "rujing.yan@protagonist-ai.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openai (>=1.86.0,<2.0.0)",
"filetype (>=1.2.0,<2.0.0)"
]
repository = "https://github.com/protagolabs/netmind-python"
homepage = "https://github.com/protagolabs/netmind-python"
packages = [
{ include = "netmind", from = "src" }
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.0"
pytest-asyncio = "^1.0.0"
[tool.poetry.urls]
"Homepage" = "https://github.com/protagolabs/netmind-python"
"Bug Tracker" = "https://github.com/protagolabs/netmind-python/issues"