We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae96de0 commit 23ca7ddCopy full SHA for 23ca7dd
Message.py Ping/Message.pyMessage.py renamed to Ping/Message.py
Ping.py Ping/Ping.pyPing.py renamed to Ping/Ping.py
Ping/__init__.py
@@ -0,0 +1,3 @@
1
+#'Ping python package'
2
+
3
+from Ping import *
setup.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+from setuptools import setup, find_packages
4
5
+setup(name='ping-python',
6
+ version='0.0.1-dev',
7
+ description='A python module for the Blue Robotics Ping1D echosounder',
8
+ author='Blue Robotics',
9
+ url='https://www.bluerobotics.com',
10
+ packages=find_packages()
11
+)
0 commit comments