8000 warnings: Release 0.1. · micropython/micropython-lib@24d04d6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 24d04d6

Browse files
8000
Paul Sokolovsky
committed
warnings: Release 0.1.
1 parent 2e4904f commit 24d04d6

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

warnings/metadata.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
srctype=micropython-lib
2+
type=module
3+
version=0.1

warnings/setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
from distutils.core import setup
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+
27

38
setup(name='micropython-warnings',
4-
version='0.0.1',
5-
description='Dummy warnings package for MicroPython',
9+
version='0.1',
10+
description='warnings 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.",
612
url='https://github.com/micropython/micropython/issues/405',
713
author='MicroPython Developers',
814
author_email='micro-python@googlegroups.com',
15+
maintainer='MicroPython Developers',
16+
maintainer_email='micro-python@googlegroups.com',
917
license='MIT',
1018
py_modules=['warnings'])

0 commit comments

Comments
 (0)
0