-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jmorat
committed
Mar 5, 2024
1 parent
c8f4bcd
commit ad8351e
Showing
3 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ def read_doc(filepath): | |
setuptools.setup( | ||
# description | ||
name='kapture-localization', | ||
version="0.1.8", | ||
version="1.1.9", | ||
author="naverlabs", | ||
author_email="[email protected]", | ||
description="kapture-localization: localization pipelines based on kapture.", | ||
|
@@ -59,7 +59,7 @@ def read_doc(filepath): | |
], | ||
|
||
# dependencies | ||
python_requires='>=3.6', | ||
python_requires='>=3.8', | ||
install_requires=[ | ||
'kapture>=1.1.8,<1.2.0', | ||
'numpy>=1.16', | ||
|
@@ -69,12 +69,14 @@ def read_doc(filepath): | |
'torch>=1.4.0', | ||
'tabulate>=0.8.7', | ||
'opencv-python', | ||
'build>=1.0.3', | ||
], | ||
extras_require={ | ||
'dev': ['pytest'], | ||
}, | ||
# sources | ||
packages=setuptools.find_packages(), | ||
data_files=[(".", ["README.adoc"])], | ||
scripts=[file | ||
for dir in ["tools", 'pipeline'] | ||
for file in glob(os.path.join(HERE, dir, '*.py'))], | ||
|