├── .coveragerc ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _templates │ └── page.html ├── conf.py └── index.rst ├── funcsigs ├── __init__.py ├── odict.py └── version.py ├── requirements ├── development.txt └── production.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_formatannotation.py ├── test_funcsigs.py └── test_inspect.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/.coveragerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/docs/index.rst -------------------------------------------------------------------------------- /funcsigs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/funcsigs/__init__.py -------------------------------------------------------------------------------- /funcsigs/odict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/funcsigs/odict.py -------------------------------------------------------------------------------- /funcsigs/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4" 2 | -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/requirements/development.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_formatannotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/tests/test_formatannotation.py -------------------------------------------------------------------------------- /tests/test_funcsigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/tests/test_funcsigs.py -------------------------------------------------------------------------------- /tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/funcsigs/HEAD/tests/test_inspect.py --------------------------------------------------------------------------------