copy: Switch to setuptools to support dependencies (types module).

asyncio-segfault
Paul Sokolovsky 2014-04-06 23:30:48 +03:00
rodzic 0b37602a02
commit 122d1781e3
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -2,14 +2,15 @@ import sys
# Remove current dir from sys.path, otherwise distutils will peek up our # Remove current dir from sys.path, otherwise distutils will peek up our
# copy module instead of system. # copy module instead of system.
sys.path.pop(0) sys.path.pop(0)
from distutils.core import setup from setuptools import setup
setup(name='micropython-copy', setup(name='micropython-copy',
version='0.0.1', version='0.0.2',
description='CPython copy module ported to MicroPython', description='CPython copy module ported to MicroPython',
url='https://github.com/micropython/micropython/issues/405', url='https://github.com/micropython/micropython/issues/405',
author='CPython Developers', author='CPython Developers',
maintainer='MicroPython Developers', maintainer='MicroPython Developers',
maintainer_email='micro-python@googlegroups.com', maintainer_email='micro-python@googlegroups.com',
license='Python', license='Python',
install_requires=['micropython-types'],
py_modules=['copy']) py_modules=['copy'])