-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (25 loc) · 928 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
from setuptools import setup, find_packages
setup(
name = "puzzle",
version = "1.1.1",
description = "Classes implementing detection based puzzle solving pipelines.",
url = "https://github.com/ivapylibs/puzzle_solver",
author = "IVALab",
packages=find_packages(),
install_requires=[
"numpy",
"scipy>=1.8.1",
"matplotlib",
"opencv-contrib-python",
"scikit-image",
"scikit-learn",
"similaritymeasures",
"pygame",
"Lie @ git+https://github.com/ivapylibs/Lie.git",
"ivapy @ git+https://github.com/ivapylibs/ivapy.git",
"improcessor @ git+https://github.com/ivapylibs/improcessor.git",
"trackpointer @ git+https://github.com/ivapylibs/trackpointer.git",
"detector @ git+https://github.com/ivapylibs/detector.git",
"perceiver @ git+https://github.com/ivapylibs/perceiver.git",
]
)