forked from romilly/quick2wire-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (33 loc) · 1.08 KB
/
setup.py
File metadata and controls
42 lines (33 loc) · 1.08 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
#!/usr/bin/env python
import os
from distutils.core import setup
def contents_of(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return 'Quick2Wire API'
setup(name='Quick2Wire',
version='1.1.0.0-a',
description='Quick2Wire API',
long_description=contents_of('README.rst'),
author='Quick2Wire Ltd.',
author_email='info@quick2wire.com',
url='http://quick2wire.com',
license="LGPL or MIT",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License (LGPL)',
'License :: OSI Approved :: MIT',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Software Development',
],
platforms=['Linux'],
provides=['quick2wire.gpio', 'quick2wire.i2c'],
packages=['quick2wire'],
package_dir = {'': 'src'},
scripts=[],
requires=[]
)