-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 891 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
from setuptools import setup, Extension
module = Extension('medioex',
sources=['medioex.c'],
libraries=['bcm2835'],
extra_compile_args=['-std=gnu11', '-lbcm2835'],
extra_link_args=['-std=gnu11']
)
setup(name='medioex',
version='0.1.24',
description='Python MedIOEx module',
url = 'https://github.com/beyaznet/python-medioex-module',
author = 'Beyaz R&D Team',
author_email = 'arge@beyaz.net',
license = 'GNU GPLv3',
keywords = 'raspberry pi medioex taliabee',
python_requires='>=3',
ext_modules=[module],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: C'
]
)