-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
64 lines (59 loc) · 1.56 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
60
61
62
63
64
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pymads"
version = "0.0.6"
dependencies = [
"annotated-types>=0.7.0",
"anyio>=4.4.0",
"certifi>=2024.6.2",
"charset-normalizer>=3.3.2",
"colorama>=0.4.6",
"diskcache>=5.6.3",
"distro>=1.9.0",
"docker>=7.1.0",
"FLAML>=2.1.2",
"h11>=0.14.0",
"httpcore>=1.0.5",
"httpx>=0.27.0",
"idna>=3.7",
"numpy>=1.26.4",
"openai>=1.31.0",
"packaging>=24.0",
"pandas>=2.2.2",
"pyautogen>=0.2.28",
"pydantic>=2.7.3",
"pydantic_core>=2.18.4",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.0.1",
"pytz>=2024.1",
"regex>=2024.5.15",
"requests>=2.32.3",
"six>=1.16.0",
"sniffio>=1.3.1",
"termcolor>=2.4.0",
"tiktoken>=0.7.0",
"tqdm>=4.66.4",
"typing_extensions>=4.12.1",
"tzdata>=2024.1",
"urllib3>=2.2.1"
]
authors = [
{ name="Diogo Pedrosa", email="[email protected]"},
{ name="Iago Gaspar", email="[email protected]" },
]
description = "A framework that uses multi-agents to enable users to perform a systematic data science pipeline with just two inputs."
readme = "README.md"
requires-python = ">=3.11.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/AiFlowSolutions/MADS"
Issues = "https://github.com/AiFlowSolutions/MADS/issues"
[tool.pytest]
addopts = "--strict-markers"
testpaths = ["tests"]