Compare commits
3 Commits
8d1232d48d
...
604cb13c0a
Author | SHA1 | Date | |
---|---|---|---|
604cb13c0a | |||
92366ebfe8 | |||
6ffe63c11c |
|
@ -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", "ruff.toml"]
|
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', 'ruff.toml']
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Package:
|
Package:
|
||||||
|
|
|
@ -2,7 +2,7 @@ name: Run Python tests (through Pytest)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths-ignore: ["README.md", ".gitignore", "LICENSE", "ruff.toml"]
|
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', '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", "ruff.toml"]
|
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md', 'ruff.toml']
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Test:
|
Test:
|
||||||
|
|
12
CONVENTIONS.md
Normal file
12
CONVENTIONS.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
When contributing code to this project, you MUST follow these principles:
|
||||||
|
|
||||||
|
- Code should be easy to read and understand.
|
||||||
|
- Keep the code as simple as possible. Avoid unnecessary complexity.
|
||||||
|
- Use meaningful names for variables, functions, etc. Names should reveal intent.
|
||||||
|
- Functions should be small and do one thing well. They should not exceed a few lines.
|
||||||
|
- Function names should describe the action being performed.
|
||||||
|
- 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.
|
||||||
|
- Properly handle errors and exceptions to ensure the software's robustness.
|
||||||
|
- Use exceptions rather than error codes for handling errors.
|
||||||
|
- Consider security implications of the code. Implement security best practices to protect against vulnerabilities and attacks.
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2024 Jon Michael Aanes
|
Copyright (c) 2024-2025 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
|
@ -73,7 +73,9 @@ python -m libpurple_to_markdown LOG_DIRECTORY --output OUTPUT_FOLDER --skip-this
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
All requirements can be installed easily using:
|
This project requires [Python](https://www.python.org/) 3.8 or newer.
|
||||||
|
|
||||||
|
All required libraries can be installed easily using:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
@ -83,12 +85,16 @@ Full list of requirements:
|
||||||
- [beautifulsoup4](https://pypi.org/project/beautifulsoup4/)
|
- [beautifulsoup4](https://pypi.org/project/beautifulsoup4/)
|
||||||
|
|
||||||
|
|
||||||
|
## 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 Jon Michael Aanes
|
Copyright (c) 2024-2025 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.7'
|
__version__ = '0.1.8'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user