generated from quanttide/quanttide-example-of-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.14 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
# name it as your package name
name = "quanttide-collab-agents"
# semetric versions
version = "0.1.0-alpha.1"
# describe the package within one sentence
description = "QuantTide Collaboration Agents"
authors = [{name = "QuantTide Inc.", email = "opensource@quanttide.com"}]
classifiers = [
"Programming Language :: Python :: 3",
]
requires-python = '>=3.10'
dependencies = [
]
# dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/quanttide/quanttide-collab-agents"
Repository = "https://github.com/quanttide/quanttide-collab-agents.git"
Issues = "https://github.com/quanttide/quanttide-collab-agents/issues"
Changelog = "https://github.com/quanttide/quanttide-collab-agents/blob/main/CHANGELOG.md"
[project.license]
# create your license and name it as "LICENSE"
file = "LICENSE"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.pdm.build]
includes = [
"quanttide_collab_agents",
]
[tool.pdm.dev-dependencies]
dev = [
"python-dotenv>=1.0.1",
"volcengine-python-sdk>=1.0.111",
"httpx>=0.28.0",
"pydantic>=2.10.2",
]