├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── rusyllab ├── __init__.py ├── rusyllab.py └── tests.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/README.md -------------------------------------------------------------------------------- /rusyllab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/rusyllab/__init__.py -------------------------------------------------------------------------------- /rusyllab/rusyllab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/rusyllab/rusyllab.py -------------------------------------------------------------------------------- /rusyllab/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/rusyllab/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koziev/rusyllab/HEAD/setup.py --------------------------------------------------------------------------------