forked from rewolff/bw_library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (33 loc) · 1.05 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
#!/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 'BitWizard Api'
setup(name='BitWizard',
version='0.2-b',
description='BitWizard API',
long_description=contents_of('README.rst'),
author='Martijn Moeling, Home.Nl',
author_email='martijn@moeling.net',
url='',
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 :: Raspberry Pi BitWizard API',
],
platforms=['Linux'],
provides=['BitWizard'],
packages=['BitWizard'],
package_dir = {'': 'src'},
scripts=[],
requires=['smbus']
)