├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION.txt ├── hebrew-special-numbers-default.yml ├── hebrew_numbers ├── __init__.py └── tests.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include hebrew-special-numbers-default.yml 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.2.3 2 | -------------------------------------------------------------------------------- /hebrew-special-numbers-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/hebrew-special-numbers-default.yml -------------------------------------------------------------------------------- /hebrew_numbers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/hebrew_numbers/__init__.py -------------------------------------------------------------------------------- /hebrew_numbers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/hebrew_numbers/tests.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYaml 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriHoch/python-hebrew-numbers/HEAD/setup.py --------------------------------------------------------------------------------