├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs └── asciicast.gif ├── requirements.txt ├── setup.cfg ├── setup.py └── trypackage ├── __init__.py ├── __main__.py ├── config.py ├── core.py └── script.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/README.rst -------------------------------------------------------------------------------- /docs/asciicast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/docs/asciicast.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/setup.py -------------------------------------------------------------------------------- /trypackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/trypackage/__init__.py -------------------------------------------------------------------------------- /trypackage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/trypackage/__main__.py -------------------------------------------------------------------------------- /trypackage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/trypackage/config.py -------------------------------------------------------------------------------- /trypackage/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/trypackage/core.py -------------------------------------------------------------------------------- /trypackage/script.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/try/HEAD/trypackage/script.template --------------------------------------------------------------------------------