forked from fabio-sim/LightGlue-ONNX
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (23 loc) · 796 Bytes
/
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
from pathlib import Path
from setuptools import setup
description = ['LightGlue']
with open(str(Path(__file__).parent / 'README.md'), 'r', encoding='utf-8') as f:
readme = f.read()
extra_dependencies = ['torch', 'kornia', 'numpy', 'einops']
setup(
name='lightglue',
version='0.0',
packages=['lightglue'],
python_requires='>=3.6',
extras_require={'extra': extra_dependencies},
author='Philipp Lindenberger, Paul-Edouard Sarlin',
description=description,
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/cvg/LightGlue/',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)