| from setuptools import setup, find_packages | |
| with open("README.md", "r", encoding="utf-8") as fh: | |
| long_description = fh.read() | |
| with open("requirements.txt", "r", encoding="utf-8") as fh: | |
| requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")] | |
| setup( | |
| name="zenvision-ai-subtitles", | |
| version="1.0.0", | |
| author="Equipo ZenVision", | |
| author_email="[email protected]", | |
| description="Modelo avanzado de subtitulado automático con IA de 3GB+", | |
| long_description=long_description, | |
| long_description_content_type="text/markdown", | |
| url="https://github.com/zenvision/ai-subtitle-generator", | |
| packages=find_packages(), | |
| classifiers=[ | |
| "Development Status :: 5 - Production/Stable", | |
| "Intended Audience :: Developers", | |
| "Intended Audience :: Education", | |
| "Intended Audience :: Science/Research", | |
| "License :: OSI Approved :: MIT License", | |
| "Operating System :: OS Independent", | |
| "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 :: Multimedia :: Video", | |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | |
| "Topic :: Text Processing :: Linguistic", | |
| ], | |
| python_requires=">=3.8", | |
| install_requires=requirements, | |
| extras_require={ | |
| "dev": [ | |
| "pytest>=7.0.0", | |
| "black>=23.0.0", | |
| "flake8>=6.0.0", | |
| "mypy>=1.0.0", | |
| ], | |
| "gpu": [ | |
| "torch[cuda]>=2.0.0", | |
| "torchaudio[cuda]>=2.0.0", | |
| ], | |
| }, | |
| entry_points={ | |
| "console_scripts": [ | |
| "zenvision=app:main", | |
| ], | |
| }, | |
| keywords="ai, subtitles, video, transcription, translation, nlp, whisper, bert", | |
| project_urls={ | |
| "Bug Reports": "https://github.com/zenvision/ai-subtitle-generator/issues", | |
| "Source": "https://github.com/zenvision/ai-subtitle-generator", | |
| "Documentation": "https://docs.zenvision.ai", | |
| }, | |
| ) |