├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bistory.py ├── screenshot.png ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/README.rst -------------------------------------------------------------------------------- /bistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/bistory.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivel/bistory/HEAD/setup.py --------------------------------------------------------------------------------