-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
25 lines (23 loc) · 824 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='rpi-lcd',
version='0.0.3',
description='I²C LCD library for RaspberryPi',
author='Adam Bogdał',
author_email='[email protected]',
url='https://github.com/bogdal/rpi-lcd',
packages=find_packages(),
include_package_data=True,
install_requires=[
'smbus'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware :: Hardware Drivers'],
zip_safe=False)