-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 903 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
# /***********************************************************
# * *
# * Copyright (c) 2026 *
# * *
# * The Verifiable & Control-Theoretic Robotics (VECTR) Lab *
# * University of California, Los Angeles *
# * *
# * Authors: Aaron John Sabu *
# * Contact: {aaronjs, btlopez}@ucla.edu *
# * *
# ***********************************************************/
"""
Setup script for ORBEX-A package.
This file exists for compatibility with pip install -e in older pip versions.
Configuration is in pyproject.toml.
"""
from setuptools import setup
setup()