-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1.24 KB
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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentstan"
version = "0.1.0"
description = "AI-native agent-based modeling framework. Simulate, Test, Analyze, Narrate."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["agent-based-modeling", "abm", "simulation", "llm", "ai", "framework"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.optional-dependencies]
ai = [
"openai>=1.0",
]
all = [
"agentstan[ai]",
]
dev = [
"pytest>=7.0",
]
[project.scripts]
agentstan = "agentstan.__main__:main"
[project.urls]
Homepage = "https://github.com/systemshift/agentstan"
Repository = "https://github.com/systemshift/agentstan"
[tool.setuptools]
packages = ["agentstan", "agentstan.core", "agentstan.experiment", "agentstan.analysis", "agentstan.ai", "agentstan.defi"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]