-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="vector_forge",
version="0.0.6",
author="Simeon Emanuilov",
author_email="[email protected]",
description="Easily convert individual images into feature vectors by specifying your desired model to extract meaningful representations.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.vector-forge.com/",
license="MIT",
packages=["vector_forge"],
python_requires=">=3.10",
install_requires=[
"numpy",
"opencv-python",
"transformers",
"torch",
"tensorflow",
"Pillow",
"openvino-dev"
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="vector_forge image text vector keras pytorch",
)