-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
44 lines (38 loc) · 1.39 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
40
41
42
43
44
import sys
from distutils.core import setup
# PY3 = sys.version_info.major >= 3 # major is not available in python2.6
PY3 = sys.version_info[0] >= 3
PIFACECOMMON_MIN_VERSION = '4.0.0'
VERSION_FILE = "pifacerelayplus/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='pifacerelayplus',
version=get_version(),
description='The PiFace Relay Plus module.',
author='Thomas Preston',
author_email='thomas.preston@openlx.org.uk',
url='http://piface.github.io/pifacerelayplus/',
packages=['pifacerelayplus'],
long_description=open('README.md').read() + open('CHANGELOG').read(),
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or "
"later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='piface relay plus raspberrypi openlx',
license='GPLv3+',
requires=['pifacecommon (>='+PIFACECOMMON_MIN_VERSION+')']
)