-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiltered_reqs.txt
More file actions
99 lines (90 loc) 路 3.46 KB
/
Copy pathfiltered_reqs.txt
File metadata and controls
99 lines (90 loc) 路 3.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
# Especifica las herramientas m铆nimas requeridas para construir el paquete
requires = [
"setuptools>=65.0.0", # Versi贸n moderna con mejores caracter铆sticas
"wheel>=0.38.0", # 脷ltima versi贸n estable para builds m谩s eficientes
"setuptools_scm>=7.0.0" # Opcional: Para manejo autom谩tico de versiones
]
build-backend = "setuptools.build_meta" # Backend est谩ndar para builds Python
[project]
# Metadatos b谩sicos del proyecto
name = "mechanicalmind-dependency-ai" # Nombre en formato snake_case para pip
version = "1.0.0" # Versi贸n inicial siguiendo SemVer (Semantic Versioning)
description = "AI-powered dependency analysis and conflict resolution tool for modern Python projects"
readme = "README.md" # Archivo que contiene la documentaci贸n larga
requires-python = ">=3.8" # Versi贸n m铆nima de Python soportada
license = {text = "Apache-2.0"} # Licencia del proyecto
# Informaci贸n de los autores/maintainers
authors = [
{name = "Benjamin Cabeza Duran", email = "benjamin.cabeza@example.com"},
{name = "Deepseek AI Team", email = "ai-team@example.com"}
]
maintainers = [
{name = "MechMind Maintenance Team", email = "maintenance@mechmind.ai"}
]
# Clasificaciones para PyPI
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
# URLs importantes
urls = {
"Homepage" = "https://github.com/mechmind-dwv/MechanicalMind-Dependency-AI",
"Documentation" = "https://mechmind-ai.readthedocs.io",
"Bug Tracker" = "https://github.com/mechmind-dwv/MechanicalMind-Dependency-AI/issues",
"Changelog" = "https://github.com/mechmind-dwv/MechanicalMind-Dependency-AI/releases"
}
# Dependencias principales
dependencies = [
"numpy>=1.21.0", # Para operaciones num茅ricas eficientes
"pandas>=1.3.0", # Para manejo estructurado de datos
"scikit-learn>=1.0.0", # Algoritmos ML b谩sicos
"tqdm>=4.0.0", # Barras de progreso
"requests>=2.26.0", # Para HTTP requests
"packaging>=21.0", # Para manejo de versiones
"pyyaml>=6.0", # Para configuraci贸n YAML
]
# Dependencias opcionales (features adicionales)
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.0", # Para tests paralelos
"hypothesis>=6.0.0" # Para property-based testing
]
dev = [
"black>=22.0", # Formateador de c贸digo
"flake8>=4.0.0", # Linter
"mypy>=0.900", # Type checking
"isort>=5.0.0" # Organizaci贸n de imports
]
docs = [
"sphinx>=5.0.0",
"furo>=2022.6.0", # Tema para documentaci贸n
"sphinx-copybutton>=0.5.0"
]
ml = [
"tensorflow>=2.7.0",
"torch>=1.10.0"
]
# Puntos de entrada para scripts CLI
[project.scripts]
mechmind-scan = "mechanicalmind.cli:scan"
mechmind-fix = "mechanicalmind.cli:fix"
mechmind-analyze = "mechanicalmind.cli:analyze"
# Configuraci贸n de paquetes
[tool.setuptools]
packages = ["mechanicalmind"]
package-dir = {"" = "src"}
# Configuraci贸n para setuptools_scm (opcional)
[tool.setuptools_scm]
write_to = "src/mechanicalmind/_version.py"