-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
40 lines (38 loc) · 1.52 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
#!/usr/bin/env python3
from distutils.core import setup
import setuptools
with open("README.md") as f:
description = f.read()
setup(
name = 'qemu-rpi-gpio',
scripts = [ "qemu-rpi-gpio" ],
version = '0.4',
license = 'GPLv3',
description = 'Simulate GPIOs in qemu-based Raspberry PI',
long_description = description,
long_description_content_type='text/markdown',
author = 'Davide Berardi',
author_email = '[email protected]',
url = 'https://github.com/berdav/qemu-rpi-gpio',
download_url = 'https://github.com/berdav/qemu-rpi-gpio/archive/refs/tags/v0.4.zip',
keywords = [ 'raspberry-pi', 'gpio', 'virtualization', 'qemu' ],
install_requires = [
'pexpect'
],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Testing :: Mocking',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
)