Skip to content

Commit 23ca7dd

Browse files
committed
Add setup.py
1 parent ae96de0 commit 23ca7dd

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed
File renamed without changes.
File renamed without changes.

Ping/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#'Ping python package'
2+
3+
from Ping import *

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
3+
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

Comments
 (0)