micropython-lib/python-stdlib/quopri/setup.py

21 wiersze
1.1 KiB
Python
Czysty Zwykły widok Historia

2014-05-20 19:36:54 +00:00
import sys
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system's.
2014-05-20 19:36:54 +00:00
sys.path.pop(0)
from setuptools import setup
sys.path.append("..")
2018-02-02 18:30:52 +00:00
import sdist_upip
2014-05-20 19:36:54 +00:00
setup(name='micropython-quopri',
version='0.5.1',
2014-05-20 19:36:54 +00:00
description='CPython quopri module ported to MicroPython',
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',
2014-05-20 19:36:54 +00:00
author='CPython Developers',
author_email='python-dev@python.org',
maintainer='micropython-lib Developers',
2014-05-20 19:36:54 +00:00
maintainer_email='micro-python@googlegroups.com',
license='Python',
2018-02-02 18:30:52 +00:00
cmdclass={'sdist': sdist_upip.sdist},
2014-05-20 19:36:54 +00:00
py_modules=['quopri'])