forked from AgentTorch/AgentTorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.24 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "agent_torch"
version = "0.4.0"
description = "large population models"
readme = "readme.md"
license = {text = "MIT"}
authors = [
{name = "Ayush Chopra"},
{name = "Shashank Kumar"},
{name = "Jayakumar Subramanian"},
{name = "Balaji Krishnamurthy"},
{name = "Ramesh Raskar"}
]
maintainers = [
{name = "Vedant Kulkarni"}
]
requires-python = ">= 3.8"
dependencies = [
"numpy",
"pandas",
"torch",
"torch_geometric",
"omegaconf",
"asyncio",
"langchain",
"langchain-openai",
"networkx",
"dspy"
]
[project.urls]
Homepage = "https://lpm.media.mit.edu/docs"
Issues = "https://github.com/AgentTorch/AgentTorch/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
excludes = ["populations", "models"]
[tool.bumpver]
current_version = "0.4.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "chore: {old_version} -> {new_version}"
tag_scope = "default"
tag_message = "v{new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"agent_torch/core/version.py" = [
'^__version__ = "{version}"$',
]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]