-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.1 KB
/
setup.py
File metadata and controls
27 lines (26 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# =================================================================================================
# Copyright (c) Innovation First 2025. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# =================================================================================================
from setuptools import setup, find_packages
setup(
name='vex',
version='1.0.1',
packages=find_packages(where='./vex'),
package_dir={'': '.'},
install_requires=[
'websocket-client'
],
include_package_data=True,
description='VEX AIM WebSocket Python Client',
author='Charlie Didear,James Pearman, Levi Pope, Raj Balasubramanian',
author_email='charlie_didear@innovationfirst.com, james_pearman@innovationfirst.com, levi_pope@innovationfirst.com, raj@vex.com',
url='https://github.com/VEX-Robotics/AIM_Python_API',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
license='MIT',
license_files=['LICENSE'],
python_requires='>=3.8',
)