-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 886 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "trace-opt"
authors = [
{name = "Ching-An Cheng", email = "chinganc0@gmail.com"},
{name = "Allen Nie", email = "aimingnie@gmail.com"},
{name = "Adith Swaminathan", email = "adith387@gmail.com"},
]
license="MIT"
license-files=["LICEN[CS]E*"]
requires-python = ">= 3.9"
dynamic = ["version", "dependencies", "description"]
readme = "README.md"
keywords = ["trace", "opto", "AutoDiff"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
]
[project.optional-dependencies]
autogen = ["autogen-agentchat==0.2.40"]
[project.urls]
Homepage = "https://microsoft.github.io/Trace/"
Documentation = "https://microsoft.github.io/Trace/intro.html"
Repository = "https://github.com/microsoft/Trace.git"