Files
Medios-Macina/setup.py

40 lines
1.3 KiB
Python
Raw Permalink Normal View History

2025-11-25 20:09:33 -08:00
"""
Setup configuration for Medeia-Macina.
Medeia-Macina is a comprehensive media and data management system with support for:
- Video downloading from multiple sources (YouTube, etc.)
- Local and cloud-based file storage
- Advanced metadata and tag management
- Full-featured TUI and CLI interfaces
"""
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="medeia-macina",
version="1.0.0",
description="Comprehensive media and data management system",
author="Anonymous",
python_requires=">=3.9",
packages=find_packages(exclude=["tests", "*.tests"]),
install_requires=requirements,
entry_points={
"console_scripts": [
"mm=medeia_macina.cli_entry:main",
"medeia=medeia_macina.cli_entry:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)