-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (36 loc) · 1.26 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
from setuptools import setup, find_packages
import glob
with open('README.md') as f:
long_description = f.read()
setup(
name='bbb_pru_adc',
version='1.3.0',
description='Streaming capture of ADC on BeagleBone (Black)',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pgmmpk/bbb_pru_adc',
author='Mike Kroutikov',
author_email='pgmmpk@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='beaglebone black adc pru',
packages=['bbb_pru_adc'],
python_requires='>=3.5, <4',
package_data={'bbb_pru_adc': ['resources/*']},
data_files=[
('src', glob.glob('src/*')),
],
# # this is a hack - we do not really use the built static library
# # but we want the side-effect: wheel is for ARM platform only -MK
# libraries=[('driver', {
# 'sources': ['src/driver.c'],
# })],
)