mirror of
https://github.com/AnimeThemes/animethemes-batch-encoder.git
synced 2026-07-11 09:34:33 +02:00
29 lines
914 B
Python
29 lines
914 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="animethemes-batch-encoder",
|
|
version="2.4",
|
|
author="AnimeThemes",
|
|
author_email="admin@animethemes.moe",
|
|
url="https://github.com/AnimeThemes/animethemes-batch-encoder",
|
|
description="Generate/Execute FFmpeg commands for files in acting directory",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Programming Language :: Python :: 3.15",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.14",
|
|
install_requires=["appdirs", "inquirer"],
|
|
)
|