-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 999 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
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("./README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()
with open("./LICENSE", "r", encoding="utf-8") as fp:
license = fp.read()
setup(
name="qin",
version="0.1.3",
keywords=["pip", "tools"],
description="Interesting toolset",
entry_points={
'console_scripts': [
'qin = qin.main:app'
]
},
python_requires='>=3.10',
long_description=long_description,
long_description_content_type="text/markdown",
license=license,
url="https://github.com/Alndaly/qin-cli",
author="Kinda Hall",
maintainer="Kinda Hall",
maintainer_email="[email protected]",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
platforms="macOS",
install_requires=['typer', 'ffmpeg-python', 'oss2', 'gradio', 'yt-dlp', 'fastapi', 'moviepy', 'httpx', 'urllib3>=2.0']
)