-
Notifications
You must be signed in to change notification settings - Fork 23
Description
setuptools.setup(
name="seekcamera-python",
version="1.2.0", <---------------------------------------------------------------------------
author="Seek Thermal Incorporated",
author_email="open-source@thermal.com",
description="Seek Thermal SDK Python Language Bindings",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/seekthermal/seekcamera-python",
license="Apache License 2.0",
license_files=["LICENSE"],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
python_requires=">=3.0",
install_requires=[
"numpy>=1",
],
data_files=[
("examples", ["examples/seekcamera-opencv.py", "examples/seekcamera-simple.py"])
],
)