Skip to content

Commit 7d89bef

Browse files
committed
Basic setup.py
Structured as an individual module for now.
1 parent d70fa1f commit 7d89bef

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(name="spi",
6+
version="0.1.0",
7+
description="SPI Interface",
8+
long_description="Pure Python SPI interface using spidev",
9+
author="Tom Stokes",
10+
author_email="[email protected]",
11+
url="http://github.com/tomstokes/python-spi",
12+
license="MIT",
13+
py_modules=['spi'])
File renamed without changes.

0 commit comments

Comments
 (0)