generated from IBM/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from IBM/12-generate-pip-package
12 generate pip package
- Loading branch information
Showing
56 changed files
with
291 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.git | ||
venv | ||
.idea | ||
__pycache__ | ||
test/data/javacores/output/export.xml | ||
test/data/javacores/output/export.xsl | ||
tmp | ||
test/data/javacores-WAIT2/report.xml | ||
test/data/javacores-WAIT2/report.xsl | ||
.vscode | ||
dist | ||
src/javacore_analyser.egg-info | ||
reports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# | ||
# Copyright IBM Corp. 2024 - 2024 | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
[build-system] | ||
requires = ["hatchling", "versioningit"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
dynamic = ["version"] | ||
name = "javacore_analyser" | ||
#version = "2.0rc1" | ||
authors = [ | ||
{ name="Krzysztof Kazmierczyk", email="[email protected]" }, | ||
{ name="Piotr Aniola", email="[email protected]" }, | ||
{ name="Tadeusz Janasiewicz", email="[email protected]" }, | ||
] | ||
description = "The tool to review IBM Javacore files" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
"Framework :: Flask", | ||
"Intended Audience :: Customer Service", | ||
"Intended Audience :: System Administrators", | ||
"Natural Language :: English", | ||
] | ||
dependencies = [ | ||
"py7zr", | ||
"lxml", | ||
"pyana", | ||
"importlib-resources", | ||
"flask", | ||
"waitress", | ||
"tqdm" | ||
] | ||
|
||
[project.scripts] | ||
javacore_analyser_batch="javacore_analyser.javacore_analyser_batch:main" | ||
javacore_analyser_web="javacore_analyser.javacore_analyser_web:main" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/IBM/javacore-analyser" | ||
Issues = "https://github.com/IBM/javacore-analyser/issues" | ||
Changelog = "https://github.com/IBM/javacore-analyser/CHANGELOG.md" | ||
Source = "https://github.com/IBM/javacore-analyser" | ||
|
||
[tool.hatch.version] | ||
source = "versioningit" | ||
|
||
[tool.versioningit.format] | ||
distance = "{next_version}.dev{distance}" | ||
dirty = "{version}" | ||
distance-dirty = "{next_version}.dev{distance}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
dicttoxml | ||
py7zr | ||
lxml | ||
pyana | ||
importlib-resources | ||
waitress # Production WSGI server | ||
flask # WSGI server for development the code | ||
tqdm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# | ||
# Copyright IBM Corp. 2024 - 2024 | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.