-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agentlab"
dynamic = ["version", "dependencies"]
description = "Main package for developing agents and experiments"
authors = [
{name = "Rim Assouel", email = "rim.assouel@gmail.com"},
{name = "Alex Drouin", email = "alex.drouin@servicenow.com"},
{name = "Maxime Gasse", email = "maxime.gasse@servicenow.com"},
{name = "Alex Lacoste", email = "alex.lacoste@servicenow.com"},
{name = "Tom Marty", email = "tom.marty@polymtl.ca"},
{name = "Massimo Caccia", email = "massimo.caccia1@servicenow.com"},
{name = "Thibault Le Sellier de Chezelles", email = "thibault.de.chezelles@gmail.com"},
{name = "Aman Jaiswal", email = "aman.jaiswal@servicenow.com"},
]
readme = "README.md"
requires-python = ">3.10"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
"Homepage" = "https://github.com/ServiceNow/AgentLab"
[tool.setuptools.dynamic]
version = {attr = "agentlab.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[project.scripts]
agentlab-assistant = "agentlab.ui_assistant:main"
agentlab-xray = "agentlab.analyze.agent_xray:main"