Skip to content

Commit e1f9e10

Browse files
committed
machine: Release 0.1.
1 parent 397a056 commit e1f9e10

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

machine/metadata.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
srctype = micropython-lib
2+
type = package
3+
version = 0.1
4+
author = Paul Sokolovsky
5+
depends = ffilib, os, signal

machine/setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import sys
2+
# Remove current dir from sys.path, otherwise setuptools will peek up our
3+
# module instead of system.
4+
sys.path.pop(0)
5+
from setuptools import setup
6+
7+
8+
setup(name='micropython-machine',
9+
version='0.1',
10+
description='machine module for MicroPython',
11+
long_description="This is a module reimplemented specifically for MicroPython standard library,\nwith efficient and lean design in mind. Note that this module is likely work\nin progress and likely supports just a subset of CPython's corresponding\nmodule. Please help with the development if you are interested in this\nmodule.",
12+
url='https://github.com/micropython/micropython/issues/405',
13+
author='Paul Sokolovsky',
14+
author_email='[email protected]',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='[email protected]',
17+
license='MIT',
18+
packages=['machine'],
19+
install_requires=['micropython-ffilib', 'micropython-os', 'micropython-signal'])

0 commit comments

Comments
 (0)