Yet Another WebIOPi+
 All Classes Namespaces Files Functions Variables Macros Pages
setup.py
Go to the documentation of this file.
1 from setuptools import setup, Extension
2 
3 classifiers = ['Development Status :: 3 - Alpha',
4  'Operating System :: POSIX :: Linux',
5  'License :: OSI Approved :: MIT License',
6  'Intended Audience :: Developers',
7  'Programming Language :: Python :: 2.7',
8  'Programming Language :: Python :: 3',
9  'Topic :: Software Development',
10  'Topic :: Home Automation',
11  'Topic :: System :: Hardware']
12 
13 setup(name = 'WebIOPi',
14  version = '0.7.1',
15  author = 'Eric PTAK',
16  author_email = 'trouch@trouch.com',
17  description = 'A package to control Raspberry Pi GPIO from the web',
18  long_description = open('../doc/README').read(),
19  license = 'MIT',
20  keywords = 'RaspberryPi GPIO Python REST',
21  url = 'http://code.google.com/p/webiopi/',
22  classifiers = classifiers,
23  packages = ["webiopi",
24  "webiopi.utils",
25  "webiopi.clients",
26  "webiopi.protocols",
27  "webiopi.server",
28  "webiopi.decorators",
29  "webiopi.devices",
30  "webiopi.devices.digital",
31  "webiopi.devices.analog",
32  "webiopi.devices.sensor",
33  "webiopi.devices.clock",
34  "webiopi.devices.memory",
35  "webiopi.devices.shield"
36  ],
37  ext_modules = [Extension(name='_webiopi.GPIO', sources=['native/bridge.c', 'native/gpio.c', 'native/cpuinfo.c'], include_dirs=['native/'])],
38  headers = ['native/cpuinfo.h', 'native/gpio.h'],
39  )
Definition: setup.py:1