8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1867507 commit 904cfd2Copy full SHA for 904cfd2
heapq/setup.py
@@ -0,0 +1,16 @@
1
+import sys
2
+# Remove current dir from sys.path, otherwise distutils will peek up our
3
+# copy module instead of system.
4
+sys.path.pop(0)
5
+from setuptools import setup
6
+
7
+setup(name='micropython-heapq',
8
+ version='0.9',
9
+ description='CPython heapq module ported to MicroPython',
10
+ url='https://github.com/micropython/micropython/issues/405',
11
+ author='CPython Developers',
12
+ maintainer='MicroPython Developers',
13
+ maintainer_email='micro-python@googlegroups.com',
14
+ license='Python',
15
+ install_requires=['micropython-itertools'],
16
+ py_modules=['heapq'])
0 commit comments