-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.5 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.5 KB
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
# -*- coding: utf-8 -*-
# Copyright (c) 2017, 2020 RS Components Ltd
# SPDX-License-Identifier: MIT License
from setuptools import setup
setup(
name = 'DesignSpark.Pmod',
namespace_packages=['DesignSpark'],
packages = ['DesignSpark.Pmod'],
version = '0.3.0',
description = 'Raspberry Pi Pmod HAT support library',
author = 'RS Components',
author_email = 'maint@abopen.com',
url = 'https://github.com/designsparkrs/DesignSpark.Pmod',
download_url = 'https://github.com/designsparkrs/DesignSpark.Pmod/archive/0.3.0.tar.gz',
install_requires = ['future','RPI.GPIO','spidev','luma.oled','luma.core','pyserial'],
license = 'MIT License',
long_description = open('README.rst').read(),
keywords = 'raspberry pi raspi pmod digilent designspark spi pwm adc oled hbridge gps',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Education',
'Topic :: System :: Hardware',
'Topic :: System :: Hardware :: Hardware Drivers'
]
)