forked from tomstokes/python-spi
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (25 loc) · 919 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
import setuptools
from distutils.core import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name="python3-spi",
version="0.3.1",
description="Python interface for SPI communications",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tom Stokes, Tom Egan",
author_email="[email protected]",
url="https://github.com/tkegan/python-spi",
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Embedded Systems',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
python_requires='>=2.7, !=3.0.*, <4',
py_modules=['spi'])