Spaces:
Running
Running
File size: 378 Bytes
bd61f34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from setuptools import setup, find_packages
setup(
name="deepdrone",
version="0.1.0",
description="DeepDrone - AI-powered drone control and mission planning",
author="DeepDrone Team",
packages=find_packages(),
install_requires=[
"dronekit",
"smolagents",
"streamlit",
"huggingface_hub",
"python-dotenv",
],
) |