Skip to content

Commit b5a99cd

Browse files
committed
Version 0.1.1
1 parent c258c2f commit b5a99cd

File tree

3 files changed

+63
-2
lines changed

3 files changed

+63
-2
lines changed

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,61 @@ venv.bak/
102102

103103
# mypy
104104
.mypy_cache/
105+
106+
# Created by https://www.gitignore.io/api/macos,windows
107+
108+
### macOS ###
109+
# General
110+
.DS_Store
111+
.AppleDouble
112+
.LSOverride
113+
114+
# Icon must end with two \r
115+
Icon
116+
117+
# Thumbnails
118+
._*
119+
120+
# Files that might appear in the root of a volume
121+
.DocumentRevisions-V100
122+
.fseventsd
123+
.Spotlight-V100
124+
.TemporaryItems
125+
.Trashes
126+
.VolumeIcon.icns
127+
.com.apple.timemachine.donotpresent
128+
129+
# Directories potentially created on remote AFP share
130+
.AppleDB
131+
.AppleDesktop
132+
Network Trash Folder
133+
Temporary Items
134+
.apdisk
135+
136+
### Windows ###
137+
# Windows thumbnail cache files
138+
Thumbs.db
139+
ehthumbs.db
140+
ehthumbs_vista.db
141+
142+
# Dump file
143+
*.stackdump
144+
145+
# Folder config file
146+
[Dd]esktop.ini
147+
148+
# Recycle Bin used on file shares
149+
$RECYCLE.BIN/
150+
151+
# Windows Installer files
152+
*.cab
153+
*.msi
154+
*.msix
155+
*.msm
156+
*.msp
157+
158+
# Windows shortcuts
159+
*.lnk
160+
161+
162+
# End of https://www.gitignore.io/api/macos,windows

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# m16_mlutils
2-
Some stuff that is probably better implemented somewhere else but I'm still a newbie to find out where...
2+
3+
[![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/)
4+
5+
Some stuff that is probably better implemented somewhere else but I'm still a newbie to find out where...

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools.command.install import install
1414

1515
# Package version
16-
VERSION = "0.1.0"
16+
VERSION = "0.1.1"
1717

1818
class VerifyVersionCommand(install):
1919
"""Custom command to verify that the git tag matches our version"""

0 commit comments

Comments
 (0)