Skip to content

Commit e1f7d8c

Browse files
Merge pull request #2 from NicholasSynovic/main
Update README.md
2 parents 4b0ffff + db32aba commit e1f7d8c

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed

README.md

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
1-
# bump-version-python
2-
Utility tool to bump versions of Python projects
1+
# Software and Systems Laboratory Version Utility
2+
3+
> Utility tool to bump versions of projects
4+
5+
## Table of Contents
6+
7+
- [Software and Systems Laboratory Version Utility](#software-and-systems-laboratory-version-utility)
8+
- [Table of Contents](#table-of-contents)
9+
- [About](#about)
10+
- [Install](#install)
11+
- [Command Line Options](#command-line-options)
12+
13+
## About
14+
15+
This is a tool to be used on Software and Systems Laboratory (SSL) software
16+
projects for managing versions in different build systems.
17+
18+
## Install
19+
20+
We are releasing this software on GitHub alone as other solutions exist for
21+
this problem.
22+
23+
## Command Line Options
24+
25+
```shell
26+
usage: Utility tool to handle versions of Software and Systems Laboratory (SSL) projects
27+
28+
This utility is meant to be used as a development dependency to version bump a project, or to retrieve the version number for a SSL project.
29+
30+
options:
31+
-f FILE, --file FILE Filepath to change project version. DEFAULT: pyproject.toml
32+
-h, --help show this help message and exit
33+
-r, --read-version Flag to read version value from file: DEFAULT: False
34+
-s SET_VERSION, --set-version SET_VERSION
35+
Set version of project to a value. DEFAULT: None
36+
-v, --version Print version of the tool
37+
38+
Author(s): Software and Systems Laboratory - Loyola University Chicago```

version_utility/utils/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from version_utility.utils.self import readVersion
99

1010
name: str = "SSL Version Utility"
11-
authors: list = ["Nicholas M. Synovic"]
11+
authors: list = ["Software and Systems Laboratory - Loyola University Chicago"]
1212
versionString: list = f"{name}: {readVersion()}"
1313

1414

0 commit comments

Comments
 (0)