Skip to content

Commit

Permalink
cleanup the tests after 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBossMagnus committed Nov 21, 2024
1 parent 030d3cf commit f689750
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 210 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller aiohttp
pip install pyinstaller aiohttp setuptools wheel build twine
- name: Get commit SHA
id: commit_sha
Expand All @@ -32,4 +32,14 @@ jobs:
with:
name: Modpack-Changelogger-${{ env.sha }}
path: dist/ModpackChangelogger*


- name: Build the package
run: python -m build

- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m pip install twine
twine upload dist/*
67 changes: 0 additions & 67 deletions .github/workflows/Release.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ config.json
log.txt
program.prof
dist/
build/
build/
*.egg-info/
2 changes: 1 addition & 1 deletion Project Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. Betas won't
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1](https://github.com/TheBossMagnus/ModpackChangelogger/releases/tag/1.0.1) - 2024-09-18
## [1.0.1](https://github.com/TheBossMagnus/ModpackChangelogger/releases/tag/1.0.1) - 2024-09-17
### Changed
* Pypi builds are now made on Github Actions
* Migrated from setup.py to pyproject.toml
Expand Down
48 changes: 0 additions & 48 deletions modpack_changelogger.egg-info/PKG-INFO

This file was deleted.

21 changes: 0 additions & 21 deletions modpack_changelogger.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion modpack_changelogger.egg-info/dependency_links.txt

This file was deleted.

2 changes: 0 additions & 2 deletions modpack_changelogger.egg-info/entry_points.txt

This file was deleted.

1 change: 0 additions & 1 deletion modpack_changelogger.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion modpack_changelogger.egg-info/top_level.txt

This file was deleted.

13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "modpack-changelogger"
version = "1.0.1"
name = "modpack_changelogger"
version = "0.1.1"
description = "A powerful and customizable Python tool to generate a changelog between two Minecraft modpacks in modrinth.mrpack or curseforge.zip format."
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -22,19 +22,20 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]

[project.dependencies]
dependencies = ["aiohttp>=3.9.5"]

[project.scripts]
modpack-changelogger = "modpack_changelogger:cli_wrapper.wrapper"

[tool.setuptools.packages.find]
where = ["modpack_changelogger"]
where = ["src"]

[tool.setuptools]
package-dir = {"" = "src"}

[tool.ruff]
line-length = 100
select = ["E", "F", "W", "C90"]
ignore = ["E501"]
exclude = ["tests/*"]
lint.select = ["E", "F", "W", "C90"]
lint.ignore = ["E501"]
lint.exclude = ["tests/*"]
44 changes: 0 additions & 44 deletions src/modpack_changelogger.egg-info/PKG-INFO

This file was deleted.

10 changes: 0 additions & 10 deletions src/modpack_changelogger.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/modpack_changelogger.egg-info/dependency_links.txt

This file was deleted.

2 changes: 0 additions & 2 deletions src/modpack_changelogger.egg-info/entry_points.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/modpack_changelogger.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/modpack_changelogger.egg-info/top_level.txt

This file was deleted.

0 comments on commit f689750

Please sign in to comment.