-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 802 Bytes
/
setup.py
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
from setuptools import setup
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="replit-ffmpeg",
author="AWeirdDev",
version="0.1",
license="MIT License",
description="Installs FFmpeg for you on Replit.",
long_description=readme,
long_description_content_type="text/markdown",
author_email="[email protected]",
packages=["replit_ffmpeg"],
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
],
keywords=["replit", "ffmpeg", "opus", "youtube-dl"],
entry_points={
"console_scripts": [
"replit-ffmpeg=replit_ffmpeg.installer:main",
],
},
)