-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1016 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (30 loc) · 1016 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
import setuptools
from os import path
with open("requirements-mlx.txt", "r") as f:
requirements = f.read().splitlines()
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="CLIPPyX",
version="1.0.1",
author="0ssamaak0",
author_email="0ssamaak0@gmail.com",
description="CLIPPyX provides an OS-wide image search that supports semantic search in both image content and text on images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/0ssamaak0/CLIPPyX",
python_requires=">=3.10",
install_requires=requirements,
packages=setuptools.find_packages(
exclude=[
"db",
"checkpoints",
"Everything-SDK",
"images",
"ml-mobileclip",
"CLIPPyX.egg-info/",
]
),
entry_points={"console_scripts": ["CLIPPyX=main"]},
)