-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 965 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 965 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
from setuptools import setup, find_packages
with open('./README.md', 'r') as f:
long_description = f.read()
setup(name='pimmi',
version='0.3.0',
description='Python IMage MIning',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/nrv/pimmi',
license='GPL-3.0',
author='Nicolas Hervé',
author_email='',
keywords='image mining',
python_requires='>=3.8',
package_data={'pimmi': ['cli/config.yml']},
packages=find_packages(exclude=["collect*", "dist", "build"]),
include_package_data=True,
install_requires=[
"casanova",
"faiss-cpu",
"fog",
"networkx>=2.7,<3",
"opencv-python",
"pyyaml",
"tqdm",
],
entry_points={
'console_scripts': [
'pimmi=pimmi.cli.__main__:main',
]
},
zip_safe=True
)