forked from alpaka-group/bashi
-
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.
- Loading branch information
1 parent
9918864
commit a53a5cd
Showing
6 changed files
with
66 additions
and
0 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 @@ | ||
#################### | ||
# caches | ||
#################### | ||
__pycache__ | ||
|
||
#################### | ||
# build artefacts | ||
#################### | ||
dist/ | ||
bashi.egg-info | ||
|
||
#################### | ||
# IDE files | ||
#################### | ||
.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
def foo(): | ||
print("Hello bashi.") |
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,9 @@ | ||
from bashi.generator import foo | ||
|
||
|
||
def main(): | ||
foo() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
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,39 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "bashi" | ||
maintainers = [ | ||
{name = "Simeon Ehrig", email = "[email protected]"}, | ||
] | ||
authors = [ | ||
{name = "Simeon Ehrig", email = "[email protected]"}, | ||
{name = "Jan Stephan", email = "[email protected]"}, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE"} | ||
description = "The library provides everything needed to generate a sparse combination matrix for alpaka-based projects, including a set of general-purpose combination rules." | ||
dynamic = ["version"] | ||
keywords = ["alpaka", "testing", "pair-wise generator"] | ||
classifiers= [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"allpairspy == 2.5.1", | ||
"typeguard" | ||
] | ||
|
||
[project.scripts] | ||
bashi-validate = "bashi.validate:main" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {file = "version.txt"} | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/alpaka-group/bashi" | ||
Repository = "https://github.com/alpaka-group/bashi" | ||
Issues = "https://github.com/alpaka-group/bashi/issues" |
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 @@ | ||
1.0.0 |