kopia lustrzana https://github.com/micropython/micropython-lib
copy: Use standard metadata, release is 3.3.3-2.
rodzic
d59af2da7b
commit
12da3a81a6
|
@ -0,0 +1,3 @@
|
|||
srctype = cpython
|
||||
type = module
|
||||
version = 3.3.3-2
|
|
@ -1,16 +1,20 @@
|
|||
import sys
|
||||
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||
# copy module instead of system.
|
||||
# Remove current dir from sys.path, otherwise setuptools will peek up our
|
||||
# module instead of system's.
|
||||
sys.path.pop(0)
|
||||
from setuptools import setup
|
||||
sys.path.append("..")
|
||||
import optimize_upip
|
||||
|
||||
setup(name='micropython-copy',
|
||||
version='0.0.2',
|
||||
version='3.3.3-2',
|
||||
description='CPython copy module ported to MicroPython',
|
||||
url='https://github.com/micropython/micropython/issues/405',
|
||||
long_description='This is a module ported from CPython standard library to be compatible with\nMicroPython interpreter. Usually, this means applying small patches for\nfeatures not supported (yet, or at all) in MicroPython. Sometimes, heavier\nchanges are required. Note that CPython modules are written with availability\nof vast resources in mind, and may not work for MicroPython ports with\nlimited heap. If you are affected by such a case, please help reimplement\nthe module from scratch.',
|
||||
url='https://github.com/micropython/micropython-lib',
|
||||
author='CPython Developers',
|
||||
author_email='python-dev@python.org',
|
||||
maintainer='MicroPython Developers',
|
||||
maintainer_email='micro-python@googlegroups.com',
|
||||
license='Python',
|
||||
install_requires=['micropython-types'],
|
||||
cmdclass={'optimize_upip': optimize_upip.OptimizeUpip},
|
||||
py_modules=['copy'])
|
||||
|
|
Ładowanie…
Reference in New Issue