-
Notifications
You must be signed in to change notification settings - Fork 588
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 955 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 955 Bytes
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
from setuptools import setup, find_packages
setup(
name="pyjianyingdraft",
version="0.2.6",
author="gary318",
description="轻量、灵活、易上手的Python剪映草稿生成及导出工具,构建全自动化视频剪辑/混剪流水线",
long_description=open("pypi_readme.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/GuanYixuan/pyJianYingDraft",
packages=find_packages(exclude=[
"tools", "tools.*",
"ignored", "ignored.*",
"tests", "tests.*",
]),
package_data={
'pyJianYingDraft': ['assets/*.json']
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Topic :: Multimedia :: Video"
],
python_requires='>=3.8',
install_requires=[
"pymediainfo",
"imageio",
"uiautomation>=2; sys_platform == 'win32'"
],
)