forked from jdgwarren/pirsclockfull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 1015 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
26
#! /usr/bin/env python
from distutils.core import setup
from setuptools import setup
setup(name='PiRSClock-Full',
version='2.0',
description='Raspberry Pi Radio Studio Clock with Studio Indicators',
author='Peter Symonds',
author_email='peter@engineeringradio.co.uk',
url='http://github.com/Engineeringradio/pirsclockfull',
scripts=['pirsclockfull.py'],
requires=['pygame','RPi.GPIO'],
install_requires=['pygame','RPi.GPIO'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Console :: Framebuffer',
'Intended Audience :: System Administrators',
'Intended Audience :: Customer Service',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Operating System :: POSIX :: Linux',
'Topic :: Utilities',
],
)