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 b3babd2 commit 74764bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions depthai_sdk/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import io

from setuptools import setup, find_packages

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

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

setup(
Expand All @@ -20,7 +21,7 @@
license='MIT',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[install_requires],
install_requires=install_requires,
include_package_data=True,
extras_require={
"visualize": [
Expand Down Expand Up @@ -62,4 +63,3 @@
]
},
)

0 comments on commit 74764bd

Please sign in to comment.