-
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.
modified the package conforming to python style. version 0.2.1 used f…
…or the paper
- Loading branch information
1 parent
27603f1
commit 9688951
Showing
13 changed files
with
101 additions
and
46 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,15 @@ | ||
# Ignore compiled files | ||
*.class | ||
*.jar | ||
*.pyc | ||
*.DS_Store | ||
|
||
# Ignore folders | ||
logs/ | ||
correlationHistogramAnalysis.egg-info/ | ||
dist/ | ||
|
||
# Ignore IDE-specific files | ||
.idea/ | ||
.vscode/ | ||
Shape_analysis.ipynb |
This file was deleted.
Oops, something went wrong.
Empty file.
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.
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.
Binary file not shown.
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,23 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "correlationHistogramAnalysis" | ||
version = "0.2.1" | ||
authors = [ | ||
{ name="Shyam Katnagallu", email="[email protected]" }, | ||
] | ||
description = "A package for correlation histogram analysis in APT" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/skatnagallu/CorrelationHistogram" | ||
Issues = "https://github.com/skatnagallu/CorrelationHistogram/issues" | ||
|