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 a4833ed commit 5efd6e3Copy full SHA for 5efd6e3
json/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-json',
8
+ version='0.1',
9
+ description='CPython json package ported to MicroPython',
10
+ url='https://github.com/micropython/micropython/issues/405',
11
+ author='CPython Developers',
12
+ maintainer='MicroPython Developers',
13
+ maintainer_email='[email protected]',
14
+ license='Python',
15
+ install_requires=['micropython-re-pcre'],
16
+ packages=['json'])
0 commit comments