-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "microbots"
dynamic = ["version", "dependencies"]
description = "container-based autonomous agent framework"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["agent", "bot", "micro"]
authors = [
{ name = "xxx", email = "xxx@example.com" }
]
classifiers = [
"Operating System :: OS Independent",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.11"
[project.optional-dependencies]
ghcp = ["github-copilot-sdk"]
azure_ad = ["azure-identity>=1.15.0"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools_scm]
# This tells setuptools-scm to get version from git tags
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Source Repo" = "https://github.com/microsoft/minions"
Issues = "https://github.com/microsoft/minions/issues"