-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathsetup.py
36 lines (35 loc) · 894 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
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name="immatch",
version="0.1.0",
install_requires=[
"transforms3d",
"tqdm",
"pyyaml",
"einops",
"kornia",
"kornia_moons",
"yacs",
"pillow",
"h5py",
"gdown",
"tables",
"vispy",
"glfw",
"albumentations",
],
packages=find_packages(),
author="Qunjie Zhou",
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
],
license="MIT",
keywords="image feature matching",
)