-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (30 loc) · 934 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
35
from setuptools import setup
with open("README.md", encoding='utf-8') as fh:
long_description = fh.read()
with open("requirements.txt", encoding='utf-8') as fh:
install_requires = fh.read()
NAME = "vardefunc"
VERSION = "0.10.0"
setup(
name=NAME,
version=VERSION,
author="Vardë",
author_email="[email protected]",
description="Vardë's Vapoursynth functions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Ichunjo/vardefunc",
packages=["vardefunc"],
package_data={
'vardefunc': ['py.typed'],
},
install_requires=install_requires,
python_requires=">=3.11",
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)