Start adding python setup file

This commit is contained in:
Piv
2020-02-24 21:20:36 +10:30
parent 0a20a7fede
commit 92b5bbc4b5
3 changed files with 14 additions and 3 deletions

5
.gitignore vendored
View File

@@ -2,5 +2,6 @@
**.vscode
**.DS_STORE
**/__pycache__
MotorContol/motor-env/*
lidar/rplidar_test/*
dist
build
CarController.egg-info

View File

@@ -3,3 +3,5 @@ opencv-python
six
paho-mqtt
u-msgpack-python
grpcio-tools
rplidar

8
setup.py Normal file
View File

@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name="CarController",
packages=find_packages(),
author="Michael Pivato",
version="0.1"
)