2014-05-19 19:09:12 +00:00
import sys
2021-05-27 05:50:04 +00:00
2014-05-19 19:09:12 +00:00
# Remove current dir from sys.path, otherwise setuptools will peek up our
2016-10-11 03:47:01 +00:00
# module instead of system's.
2014-05-19 19:09:12 +00:00
sys . path . pop ( 0 )
from setuptools import setup
2021-05-27 05:50:04 +00:00
2016-10-11 03:47:01 +00:00
sys . path . append ( " .. " )
2018-02-02 18:30:52 +00:00
import sdist_upip
2014-04-01 21:20:23 +00:00
2021-05-27 05:50:04 +00:00
setup (
name = " micropython-unittest " ,
2021-10-24 06:17:03 +00:00
version = " 0.9.0 " ,
2021-05-27 05:50:04 +00:00
description = " unittest module for MicroPython " ,
long_description = " This is a module reimplemented specifically for MicroPython standard library, \n with efficient and lean design in mind. Note that this module is likely work \n in progress and likely supports just a subset of CPython ' s corresponding \n module. Please help with the development if you are interested in this \n module. " ,
url = " https://github.com/micropython/micropython-lib " ,
author = " micropython-lib Developers " ,
author_email = " micro-python@googlegroups.com " ,
maintainer = " micropython-lib Developers " ,
maintainer_email = " micro-python@googlegroups.com " ,
license = " MIT " ,
cmdclass = { " sdist " : sdist_upip . sdist } ,
py_modules = [ " unittest " ] ,
2022-03-18 06:32:25 +00:00
install_requires = [ " micropython-argparse " , " micropython-fnmatch " ] ,
2021-05-27 05:50:04 +00:00
)