Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrown99c committed Aug 30, 2024
1 parent 4e93086 commit 40d7fba
Showing 1 changed file with 17 additions and 24 deletions.
41 changes: 17 additions & 24 deletions depthai_sdk/setup.py
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
import io
from setuptools import setup, find_packages

with open('requirements.txt') as f:
requirements = f.readlines()

install_requires = [requirement.strip() for requirement in requirements if '--' not in requirement]

setup(
name='depthai-sdk',
version='1.15.0',
description='This package provides an abstraction of the DepthAI API library.',
long_description=io.open("README.md", encoding="utf-8").read(),
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/dbrown99c/depthai/depthai_sdk/',
url='https://github.com/dbrown99c/depthai',
keywords="depthai sdk oak camera",
author='Luxonis',
author_email='[email protected]',
license='MIT',
packages=find_packages('src'), # Automatically find packages under 'src'
package_dir={'src'}, # Define the root directory for packages
install_requires=install_requires,
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
# Add your requirements here
],
include_package_data=True,
extras_require={
"visualize": [
'PySide2',
'Qt.py>=1.3.0',
'matplotlib==3.5.3; python_version <= "3.7"',
'matplotlib==3.6.1; python_version > "3.7"',
'depthai-viewer',
'open3d'
],
"replay": [
'mcap>=0.0.10',
'mcap-ros1-support==0.0.8',
'rosbags==0.9.11'
],
"visualize": ['PySide2',
'Qt.py>=1.3.0',
'matplotlib==3.5.3; python_version <= "3.7"',
'matplotlib==3.6.1; python_version > "3.7"',
'depthai-viewer',
'open3d'
],
"replay": ['mcap>=0.0.10',
'mcap-ros1-support==0.0.8',
'rosbags==0.9.11'],
"record": ['av'],
"test": ['pytest']
},
Expand Down

0 comments on commit 40d7fba

Please sign in to comment.