-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·21 lines (20 loc) · 850 Bytes
/
setup.py
File metadata and controls
executable file
·21 lines (20 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='RPi_GPIO_Rotary',
version='0.1.0',
description='Simple module for getting values from KY040 and similar rotary encoders',
url='https://github.com/AllanGallop/RPi_GPIO_Rotary',
download_url='https://github.com/AllanGallop/RPi_GPIO_Rotary/archive/0.1.0.tar.gz',
author='Allan Gallop',
author_email='allangallop@gmail.com',
keywords='rotary encoder KY040 raspberry pi GPIO',
packages=find_packages(),
install_requires=['RPi.GPIO'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)