-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 827 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
from setuptools import setup
setup(
name="sfmp",
version="1.0.1",
packages=["sfmp"],
include_package_data=True,
url="https://github.com/psthw/sfmp",
keywords="separate, images, automatically, cluster, feature, deeplearning",
package_data={"sfmp": ["artifacts/*.onnx"]},
python_requires=">=3.5, <4",
install_requires=[
"pillow==10.4.0",
"scikit-learn==1.5.1",
"tqdm==4.66.4",
],
extras_require={
'cpu': [
'onnxruntime==1.18.1',
],
"gpu": [
"onnxruntime-gpu==1.18.1",
],
},
entry_points={
"console_scripts": ["sfmp=sfmp.cli:main"],
},
description="Separate images automatically",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)