forked from Endilll/vapoursynth-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.04 KB
/
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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="UTF-8") as rdm:
long_desc = rdm.read()
with open("requirements.txt", "r", encoding="UTF-8") as rq:
req = rq.read()
setup(
name="vspreview",
version="0.1b",
author="Endilll",
description="Preview for VapourSynth scripts",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/Endilll/vapoursynth-preview",
packages=find_packages(exclude=("stubs", "tests")),
install_requires=req,
python_requires=">=3.9",
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Topic :: Multimedia :: Graphics"
],
project_urls={
"Bug Tracker": "https://github.com/Endilll/vapoursynth-preview/issues"
}
)