Skip to content

Commit 7cb60c3

Browse files
committed
itertools: Release 0.1.1.
1 parent 35ceead commit 7cb60c3

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

itertools/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.1

itertools/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-itertools',
4-
version='0.1',
9+
version='0.1.1',
510
description='itertools 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',
7-
author='Paul Sokolovsky',
13+
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=['itertools'])

0 commit comments

Comments
 (0)