forked from dhhagan/Adafruit-Raspberry-Pi-Python-Code
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 701 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 701 Bytes
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
'''
Python library for the ADS1115 Analog to Digital Converter
Adapted by David H Hagan from Adafruit
March 2015
Contact: david@davidhhagan.com
'''
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='ADS1115',
version='0.2.1',
description='Python library for interacting with the ADS1115 Analog to Digital Converter.',
url='http://github.com/vincentrou/ads1115_lib',
author='David H Hagan',
author_email='david@davidhhagan.com',
license='MIT',
keywords=['ADS1115', 'analog to digital converter', 'adc'],
packages=['ADS1115'],
install_requires=[
'smbus2'
],
zip_safe=False)