-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (42 loc) · 1.65 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
from setuptools import setup
setup(
name='gbvision',
version='1.0.1',
description='A Python Vision Library for object tracking in the 3D physical space',
license='Apache License 2.0',
packages=['gbvision',
'gbvision/constants',
'gbvision/exceptions',
'gbvision/gui',
'gbvision/models',
'gbvision/tools',
'gbvision/utils',
'gbvision/utils/net',
'gbvision/utils/drawing',
'gbvision/utils/finders',
'gbvision/utils/continuity',
'gbvision/utils/cameras',
'gbvision/utils/thresholds',
'gbvision/utils/shapes',
'gbvision/utils/recorders',
'gbvision/utils/denoising'],
author='Ido Heinemann',
author_email='idohaineman@gmail.com',
keywords=['computer vision', 'frc', 'first', 'image processing'],
url='https://github.com/GreenBlitz/GBVision',
download_url='https://github.com/GreenBlitz/GBVision/archive/v1.0.1.tar.gz',
install_requires=[
'numpy',
'opencv-python',
'opencv-contrib-python',
],
classifiers=[
'Development Status :: 4 - Beta',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Programming Language :: Python :: 3', # Specify which python versions that you want to support
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)