-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (35 loc) · 1.04 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
setup(
name='Raviewer',
version='1.0',
author='Antmicro Ltd',
description="Tool for visualization of raw graphics data",
author_email='[email protected]',
url='https://github.com/antmicro/raviewer',
license='Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'raviewer = raviewer.__main__:main',
]},
install_requires=[
'numpy',
'opencv-python',
'dearpygui==1.11.0',
'terminaltables',
'pytest',
'pyrav4l2 @ git+https://github.com/antmicro/pyrav4l2.git'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)