Compare commits
No commits in common. "6f1148e77cd6d28da82195ceed4387a1fa1f0287" and "20a9ae5ee7abfe85a458c95a41c4d7254f88b657" have entirely different histories.
6f1148e77c
...
20a9ae5ee7
|
@ -3,7 +3,7 @@ on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||||
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', 'ruff.toml']
|
paths-ignore: ["README.md", ".gitignore", "LICENSE", "ruff.toml"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Package:
|
Package:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: Python Ruff Code Quality
|
name: Python Ruff Code Quality
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', 'ruff.toml']
|
paths-ignore: ["README.md", ".gitignore", "LICENSE"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ruff:
|
ruff:
|
||||||
|
|
|
@ -2,7 +2,7 @@ name: Run Python tests (through Pytest)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', 'ruff.toml']
|
paths-ignore: ["README.md", ".gitignore", "LICENSE", "ruff.toml"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Test:
|
Test:
|
||||||
|
|
|
@ -2,7 +2,7 @@ name: Verify Python project can be installed, loaded and have version checked
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', 'ruff.toml']
|
paths-ignore: ["README.md", ".gitignore", "LICENSE", "ruff.toml"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Test:
|
Test:
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
When writing code, you MUST follow these principles:
|
|
||||||
|
|
||||||
- No trailing whitespace.
|
|
||||||
- Use types everywhere possible.
|
|
||||||
- Only use comments when necessary, as they can become outdated. Instead, strive to make the code self-explanatory.
|
|
||||||
- When comments are used, they should add useful information that is not readily apparent from the code itself.
|
|
||||||
- Dictionaries that do not change during the runtime of the program must be
|
|
||||||
placed in top-level scope.
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2024-2025 Jon Michael Aanes
|
Copyright (c) 2024 Jon Michael Aanes
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
10
README.md
10
README.md
|
@ -25,9 +25,7 @@ Defined hierarchy:
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
This project requires [Python](https://www.python.org/) 3.8 or newer.
|
All requirements can be installed easily using:
|
||||||
|
|
||||||
All required libraries can be installed easily using:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
@ -37,16 +35,12 @@ Full list of requirements:
|
||||||
- [enforce-typing](https://pypi.org/project/enforce-typing/)
|
- [enforce-typing](https://pypi.org/project/enforce-typing/)
|
||||||
|
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
Feel free to submit pull requests. Please follow the [Code Conventions](CONVENTIONS.md) when doing so.
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
```
|
```
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2024-2025 Jon Michael Aanes
|
Copyright (c) 2024 Jon Michael Aanes
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.1.48'
|
__version__ = '0.1.47'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user