From 09519439ae6ff77023a9545b5ab39fbd325c99e3 Mon Sep 17 00:00:00 2001 From: Lucas Hahmann Date: Mon, 23 Dec 2024 21:43:31 +0100 Subject: [PATCH] Test Commit --- .idea/.gitignore | 8 ++++++++ .idea/modules.xml | 8 ++++++++ .idea/test-git.iml | 12 ++++++++++++ .idea/vcs.xml | 4 ++++ gitignore | 1 + readme.md | 37 +++++++++++++++++++++++++++++++++++++ 6 files changed, 70 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/test-git.iml create mode 100644 .idea/vcs.xml create mode 100644 gitignore create mode 100644 readme.md diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ae3dda5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/test-git.iml b/.idea/test-git.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/test-git.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..d843f34 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/gitignore b/gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..05f8336 --- /dev/null +++ b/readme.md @@ -0,0 +1,37 @@ +# 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 + +# returns 'words' +foobar.pluralize('word') + +# returns 'geese' +foobar.pluralize('goose') + +# returns 'phenomenon' +foobar.singularize('phenomena') +``` + +## Contributing + +Pull requests are welcome. For major changes, please open an issue first +to discuss what you would like to change. + +Please make sure to update tests as appropriate. + +## License + +[MIT](https://choosealicense.com/licenses/mit/) \ No newline at end of file