Skip to content

Commit

Permalink
Merge pull request #24 from doronz88/refactor/packing
Browse files Browse the repository at this point in the history
Refactor/packing
  • Loading branch information
doronz88 committed May 15, 2024
2 parents bdaca24 + f1e6b5f commit 627f116
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10", 3.11 ]
python-version: [ 3.8, 3.9, "3.10", 3.11, 3.12 ]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ version.txt
debug/
*.pyc
*.egg-info/
pycrashreport/_version.py
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[project]
name = "pycrashreport"
version = "1.2.2"
description = "Pure python3 for parsing Apple's crash reports"
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -20,9 +19,10 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["dependencies"]
dynamic = ["dependencies", "version"]

[project.optional-dependencies]
test = ["pytest"]
Expand All @@ -40,6 +40,9 @@ exclude = ["docs*", "tests*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }

[tool.setuptools_scm]
version_file = "pycrashreport/_version.py"

[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
requires = ["setuptools>=43.0.0", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"

0 comments on commit 627f116

Please sign in to comment.