-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 953 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 953 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
31
32
33
34
35
36
37
#!/usr/bin/env python
# coding: utf-8
from setuptools import find_packages, setup
setup(
name="hifilter",
version="0.2.7",
author="last911",
author_email="",
description="image filter lib",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/kbrownehs18/hifilter",
packages=find_packages(include=["hifilter*", "source*"]),
package_dir={"source": "hifilter/thirdparty/DCT-Net/source"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
install_requires=[
"pillow",
"opencv-python",
"numpy",
"onnx",
"onnxruntime",
"tensorflow",
"easydict",
"modelscope",
"addict",
],
include_package_data=True,
package_data={},
)