diff --git a/.gitignore b/.gitignore index 894a44c..154bcad 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,61 @@ venv.bak/ # mypy .mypy_cache/ + +# Created by https://www.gitignore.io/api/macos,windows + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + + +# End of https://www.gitignore.io/api/macos,windows diff --git a/README.md b/README.md index cd21433..6046565 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # m16_mlutils -Some stuff that is probably better implemented somewhere else but I'm still a newbie to find out where... + +[![CircleCI](https://circleci.com/gh/messier16/m16_mlutils.svg?style=svg)](https://circleci.com/gh/messier16/m16_mlutils) [![PyPI](https://img.shields.io/pypi/v/m16-mlutils.svg)](https://pypi.org/project/m16-mlutils/) + +Some stuff that is probably better implemented somewhere else but I'm still a newbie to find out where... diff --git a/setup.py b/setup.py index 166ab14..2b2c19e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools.command.install import install # Package version -VERSION = "0.1.0" +VERSION = "0.1.1" class VerifyVersionCommand(install): """Custom command to verify that the git tag matches our version"""