forked from emutex/wiring-x86
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 814 Bytes
/
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
# -*- coding: utf-8 -*-
#
# Copyright © 2014, Emutex Ltd.
# All rights reserved.
# http://www.emutex.com
#
# Author: Nicolás Pernas Maradei <[email protected]>
#
# See license in LICENSE.txt file.
from distutils.core import setup
setup(
name='Wiring-x86',
version='1.0.0',
author='Nicolás Pernas Maradei',
author_email='[email protected]',
url='https://github.com/emutex/wiring-x86',
py_modules=['wiringx86'],
license='BSD',
description='A Python module to use most Arduino wiring functions on Intel® Arduino capable boards.',
long_description=open('README.rst').read(),
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)