-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.59 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.59 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
'''LEGO LIRC :: setup.py'''
from setuptools import setup, find_packages
with open('README.rst') as f:
README = f.read()
setup(
name='lego-lirc',
version='0.2.1',
description='Control LEGO Power Functions with a Raspberry Pi and an IR LED, using LIRC.',
long_description=README,
author='Conor Cary',
author_email='cary.42@osu.edu',
url='http://github.com/iConor/lego-lirc',
license='MIT',
packages=find_packages(exclude=('config-files', 'docs', 'tests')),
classifiers=(
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Intended Audience :: Developers',
# 'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
# 'Operating System :: Microsoft :: Windows',
# 'Operating System :: OS Independent',
# 'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
# 'Programming Language :: Python :: 3',
# 'Topic :: Communications',
# 'Topic :: Education',
# 'Topic :: Games/Entertainment',
# 'Topic :: Home Automation',
# 'Topic :: Software Development :: Embedded Systems',
# 'Topic :: Software Development :: Libraries :: Python Modules',
# 'Topic :: System :: Hardware :: Hardware Drivers'
),
keywords=['lego', 'lirc', 'power', 'functions', 'powerfunctions', 'linux',
'inrared', 'remote', 'control', 'raspberry', 'pi']
)