-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
38 lines (34 loc) · 1.16 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
"""Pupyl pypi package setup. """
import setuptools
with open('README.md') as readme:
long_description = readme.read()
setuptools.setup(
name="pupyl",
version="0.14.7",
author="Nelson Forte",
author_email="[email protected]",
description="🧿 Pupyl is a really fast image search "
"library which you can index your own (millions of) images "
"and find similar images in millisecond.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/policratus/pupyl",
packages=setuptools.find_packages(),
install_requires=[
'tensorflow==2.17.0',
'annoy==1.17.3'
],
classifiers=[
'Programming Language :: Python :: 3',
(
'License :: OSI Approved :: '
'GNU Lesser General Public License v3 (LGPLv3)'
),
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Image Recognition'
],
python_requires='>=3.9',
entry_points={'console_scripts': ['pupyl = pupyl.cli:pupyl']}
)