8000 collecions.deque: Release 0.1.1. · micropython/micropython-lib@68f41ae · GitHub
[go: up one dir, main page]

Skip to content

Commit 68f41ae

Browse files
author
Paul Sokolovsky
committed
collecions.deque: Release 0.1.1.
1 parent df85a27 commit 68f41ae

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

collections.deque/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 = package
3+
version = 0.1.1

collections.deque/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-collections.deque',
4-
version='0.1',
9+
version='0.1.1',
510
description='collections.deque 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
packages=['collections'])

0 commit comments

Comments
 (0)
0