-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (29 loc) · 884 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
30
31
32
import os
from glob import glob
from setuptools import setup, find_packages
# Setup flags and parameters
pkg_name = 'bbb' # top-level package name
# Cache readme contents for use as long_description
readme = open('README.md').read()
# Call setup()
setup(
name=pkg_name,
version='0.1',
description='Python BBB I/O library',
long_description=readme,
url='https://github.com/jschornick/pybbb',
author='Jeff Schornick',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
scripts = glob("examples/*"),
zip_safe=True,
test_suite=(pkg_name + '.tests'),
platforms='any',
keywords='bbb beaglebone gpio pwm adc',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
])