forked from muccc/py-max7301
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 724 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 724 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='max7301',
version='1.0.3',
description='MAX7301 driver',
author='Tobias Schneider',
author_email='schneider@xtort.eu',
url='https://github.com/muccc/py-max7301',
packages=['max7301'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 2",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='max7301',
license='GPLv3+',
install_requires=['spidev'],
scripts=['scripts/py-max7301-rpi-spi-setup']
)