-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
36 lines (32 loc) · 1.02 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
34
35
36
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Name: PyAnime4K pip setup file
Author: TianZerL
Editor: K4YT3X, TianZerL
"""
import setuptools, os
from pyanime4k.ac import Version
curr_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(curr_path, "README.md"), "r") as f:
long_description = f.read()
setuptools.setup(
name="pyanime4k",
version=Version.pyanime4k,
author="TianZer",
description="An easy way to use anime4kcpp in python",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords=["anime", "anime4k", "anime4kcpp", "upscale"],
url="https://github.com/TianZerL/pyanime4k",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.0",
include_package_data=True,
install_requires=["ffmpeg-python >= 0.2.0", "numpy >= 1.17.3"],
)