├── .github └── workflows │ └── python-publish.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── helasentilex ├── __init__.py └── lexicon.csv └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binodmx/helasentilex/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binodmx/helasentilex/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include helasentilex/lexicon.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binodmx/helasentilex/HEAD/README.md -------------------------------------------------------------------------------- /helasentilex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binodmx/helasentilex/HEAD/helasentilex/__init__.py -------------------------------------------------------------------------------- /helasentilex/lexicon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binodmx/helasentilex/HEAD/helasentilex/lexicon.csv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binodmx/helasentilex/HEAD/setup.py --------------------------------------------------------------------------------