Skip to content

Commit beddafa

Browse files
committed
Rename package to all lowercase.
1 parent fa21e13 commit beddafa

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SNAPpy Includes for the Pyduino Development Board
44
Introduction
55
------------
66

7-
`pyduino-includes` is a SNAPpy library that is designed to make development for the Synapse Pyduino board easier. It
7+
`pyduinoincludes` is a SNAPpy library that is designed to make development for the Synapse Pyduino board easier. It
88
allows references to the nifty Pyduino IO names (like D3, AD0, or SCL) instead of the underlying SNAPpy GPIO numbers.
99
It also provides a bit-banged SPI implementation that can be used for shields that utilize the SPI pins.
1010

@@ -18,7 +18,7 @@ By default, this is located at `...\Documents\Portal\snappyImages` on Windows.
1818

1919
### For use with SNAPbuild
2020

21-
The easiest way to install `pyduino-includes` for use with SNAPbuild is using
21+
The easiest way to install `pyduinoincludes` for use with SNAPbuild is using
2222
[pip](https://pip.pypa.io/en/latest/installing.html):
2323

2424
pip install git+ssh://[email protected]:synapse-wireless/pyduino-includes.git@master
@@ -30,10 +30,10 @@ Alternatively you can download the source, extract it, and install it:
3030
Usage
3131
-------------
3232

33-
In order to use the nice IO names, simply import `pyduino-includes` in your SNAPpy script like this:
33+
In order to use the nice IO names, simply import `pyduinoincludes` in your SNAPpy script like this:
3434

3535
```python
36-
from PyduinoIncludes import *
36+
from pyduinoincludes import *
3737

3838
def drive_d4_pin_high():
3939
setPinDir(D4, True)
@@ -51,7 +51,7 @@ Pins can be referenced as follows:
5151
Setting up the SPI pins is very simple, too:
5252

5353
```python
54-
from PyduinoIncludes.SPI import *
54+
from pyduinoincludes.SPI import *
5555

5656
def my_spi_function():
5757
spi_init() # Sets up the bit-banged SPI

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
from setuptools import setup
55

66
setup(
7-
name='pyduino-includes',
7+
name='pyduinoincludes',
88
description="Basic SNAPpy includes for the Synapse Pyduino wireless meshing development board",
99
maintainer='Tyler Crumpton',
1010
maintainer_email='[email protected]',
11-
url='https://git.synapse-wireless.com/tyler.crumpton/pyduino-includes',
12-
packages=['PyduinoIncludes'],
11+
url='https://github.com/tylercrumpton/pyduino-includes',
12+
packages=['pyduinoincludes'],
1313
install_requires=['vcversioner'],
1414
vcversioner={
15-
'version_module_paths': ['PyduinoIncludes/_version.py'],
15+
'version_module_paths': ['pyduinoincludes/_version.py'],
1616
},
1717
classifiers=[
1818
'Development Status :: 1 - Planning',

0 commit comments

Comments
 (0)