mirror of
https://github.com/AnimeThemes/animethemes-webm-verifier.git
synced 2026-07-11 01:24:30 +02:00
31 lines
910 B
Python
31 lines
910 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-webm-verifier",
|
|
version="1.3",
|
|
author="AnimeThemes",
|
|
author_email="admin@animethemes.moe",
|
|
url="https://github.com/AnimeThemes/animethemes-webm-verifier",
|
|
description="Verify WebM(s) Against AnimeThemes Encoding Standards",
|
|
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=[
|
|
"packaging",
|
|
],
|
|
)
|