-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
39 lines (33 loc) · 1.08 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
import sys
from distutils.core import setup
PY3 = sys.version_info[0] >= 3
VERSION_FILE = "pifacedigital_emulator/version.py"
def get_version():
if PY3:
version_vars = {}
with open(VERSION_FILE) as f:
code = compile(f.read(), VERSION_FILE, 'exec')
exec(code, None, version_vars)
return version_vars['__version__']
else:
execfile(VERSION_FILE)
return __version__
setup(
name='pifacedigital_emulator',
version=get_version(),
description='The PiFace Digital Emulator.',
author='Thomas Preston',
author_email='thomas.preston@openlx.org.uk',
license='GPLv3+',
url='https://github.com/piface/pifacedigital_emulator',
packages=['pifacedigital_emulator'],
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or "
"later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
],
keywords='piface digital emulator raspberrypi openlx',
scripts=['bin/build_ui.sh'],
)