-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (32 loc) · 1.02 KB
/
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
37
38
39
40
41
42
43
44
45
#!/usr/bin/env/python
"""!
@defgroup IVAPy IVAPy
@brief Utility functions and glue code for IVALab python libraries.
Contains generic class instances and useful utility functions that support the
greater IVALab codebase. Using it simplifies implementation.
@addtogroup IVAPy
@{
@defgroup ivapy_testing IVAPy Testing Utilities
@brief Utility functions and glue code for IVALab python test scripts.
Contains helper functions that make test creation and coding easier (less lines)
to help focus on what is done more so than how to do it.
@defgroup Display_CV Display via OpenCV
@brief Display-related utility functions built on opencv (cv2) libraries.
@}
"""
from setuptools import setup, find_packages
setup(
name="ivapy",
version="1.0.1",
description="General purpose modules that are useful.",
author="IVALab",
packages=find_packages(),
install_requires=[
"dataclasses",
"numpy",
"scipy",
"opencv-contrib-python",
"matplotlib",
"roipoly"
],
)