-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (22 loc) 路 787 Bytes
/
Copy pathpyproject.toml
File metadata and controls
26 lines (22 loc) 路 787 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "artificial-intelligence-evolution-program"
version = "0.16.0"
description = "Programa evolutivo de IA: de la IA simb贸lica a los sistemas ag茅nticos"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "Vladimir Acu帽a"}]
keywords = ["artificial-intelligence", "education", "agents", "machine-learning", "ai-safety"]
dependencies = ["PyYAML>=6,<7"]
[project.optional-dependencies]
dev = []
docs = ["mkdocs>=1.6,<2", "mkdocs-material>=9.6,<10"]
assets = ["reportlab>=4,<6", "python-pptx>=1,<2"]
desktop = ["pyinstaller>=6,<7"]
[project.scripts]
ai-evolution = "ai_evolution.cli:main"
[tool.setuptools.packages.find]
where = ["src"]