forked from adafruit/Adafruit_Python_PureIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 960 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: System :: Hardware']
setup(name = 'Adafruit_PureIO',
version = '0.0.1',
author = 'Tony DiCola',
author_email = 'tdicola@adafruit.com',
description = 'Pure python (i.e. no native extensions) access to Linux IO including I2C and SPI. Drop in replacement for smbus and spidev modules.',
license = 'MIT',
classifiers = classifiers,
packages = find_packages())