├── .gitignore ├── README.rst ├── confucius.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | confucius.egg-info/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkybob/confucius/HEAD/README.rst -------------------------------------------------------------------------------- /confucius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkybob/confucius/HEAD/confucius.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkybob/confucius/HEAD/pyproject.toml --------------------------------------------------------------------------------