From 95231548b565b5b0babaf139056b5dafb49a0fc7 Mon Sep 17 00:00:00 2001 From: Kevin McAleer Date: Sun, 24 May 2020 15:19:08 +0100 Subject: [PATCH] Updated travis.yml and added setup.py --- .travis.yml | 3 +++ test/setup.py | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 test/setup.py diff --git a/.travis.yml b/.travis.yml index 0102b14..2958eb1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,9 @@ python: - 3.6 - 3.7 - 3.8 +before_install: + - "pip install -U pip" + - "python setup.py install" install: - pip install unittest2 - pip install adafruit_pca9685 diff --git a/test/setup.py b/test/setup.py new file mode 100644 index 0000000..8cf8cfe --- /dev/null +++ b/test/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup, find_packages + +setup(name='smars', + version='0.1.12', + description='SMARS Quad & Wheeled test harness', + author='Kevin McAleer', + author_email='kevinmcaleer@gmail.com', + url='www.smarsfan.com', + packages=find_packages(), + ) \ No newline at end of file