From c1298e3d3f1765595615452c51f17d385f83dee1 Mon Sep 17 00:00:00 2001 From: "DESKTOP-75401JP\\mclea" Date: Wed, 10 Mar 2021 09:31:38 -0600 Subject: [PATCH] Add license and readme file --- LICENSE | 5 +++++ README.md | 31 +++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cd06d25 --- /dev/null +++ b/LICENSE @@ -0,0 +1,5 @@ +To the extent possible under law, the person who associated CC0 with +Sudoku_Solver has waived all copyright and related or neighboring rights +to Sudoku_Solver. + +See . \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e262182 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Foobar + +Foobar is a Python library for dealing with word pluralization. + +## Installation + +Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar. + +```bash +pip install foobar +``` + +## Usage + +```python +import foobar + +foobar.pluralize('word') # returns 'words' +foobar.pluralize('goose') # returns 'geese' +foobar.singularize('phenomena') # returns 'phenomenon' +``` + +## Contributing +Lorem ipsum dolor sit amet, consectetur adipiscing elit, +sed do eiusmod tempor incididunt ut labore et dolore magna +aliqua. Ut enim ad minim veniam, quis nostrud exercitation +ullamco laboris nisi ut aliquip ex ea commodo consequat. +Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +## License +[CC0](https://creativecommons.org/share-your-work/public-domain/cc0/) \ No newline at end of file