-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
59 lines (53 loc) · 1.58 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
[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 = "[email protected]"},
{name = "Alex Drouin", email = "[email protected]"},
{name = "Maxime Gasse", email = "[email protected]"},
{name = "Alex Lacoste", email = "[email protected]"},
{name = "Tom Marty", email = "[email protected]"},
{name = "Massimo Caccia", email = "[email protected]"},
{name = "Thibault Le Sellier de Chezelles", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">3.7"
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"