Skip to content

Commit

Permalink
Updated travis.yml and added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmcaleer committed May 24, 2020
1 parent 18ad1a1 commit 9523154
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions test/setup.py
Original file line number Diff line number Diff line change
@@ -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(),
)

0 comments on commit 9523154

Please sign in to comment.