forked from rafaelpadilla/review_object_detection_metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1010 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
37
38
from setuptools import find_packages, setup
import os
entry_points = {'gui_scripts': ['rodm=rodm.main:main']}
if os.name == 'nt':
entry_points.update({'console_scripts': ['rodm=rodm.main:main']})
setup(
name='rodm',
py_modules=['rodm'],
packages=find_packages(include=['rodm', 'rodm.*']),
version='0.1.0',
description='Object Detection Metrics Open-source Toolkit',
author='Rafael Padilla',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
python_requires='>=3.9',
install_requires=[
'matplotlib',
'numpy>=1.19',
'opencv-python>=4.5',
'pandas>=1.1',
'PySide2',
'pytest>=6.1',
'awscli>=1.18.180',
'chardet>=3.0.4',
'click>=7.1.2',
'flake8>=3.8.4',
'python-dotenv>=0.15.0',
'pyyaml>=5.3.1',
'sphinx>=3.3.1'
],
entry_points=entry_points,
)