Skip to content

Commit

Permalink
setup kuliya package
Browse files Browse the repository at this point in the history
  • Loading branch information
omdxp committed Apr 20, 2024
1 parent 6daf572 commit 7a09759
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 0 deletions.
17 changes: 17 additions & 0 deletions d/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.dub
docs.json
__dummy.html
docs/
/kuliya
kuliya.so
kuliya.dylib
kuliya.dll
kuliya.a
kuliya.lib
kuliya-test-*
*.exe
*.pdb
*.o
*.obj
*.lst
d-test-library
4 changes: 4 additions & 0 deletions d/dub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "d",
"targetType": "library"
}
6 changes: 6 additions & 0 deletions d/source/kuliya/kuliya.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module kuliya.kuliya;

unittest
{
assert(1 == 1);
}
3 changes: 3 additions & 0 deletions d/source/kuliya/package.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module kuliya;

public import kuliya.kuliya;
10 changes: 10 additions & 0 deletions dub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"authors": ["Omar Belghaouti"],
"copyright": "Copyright © 2024, dzCode.io",
"description": "Algeria's college hierarchy dataset as a D package.",
"license": "MIT",
"name": "kuliya",
"sourcePaths": ["d/source"],
"targetType": "library",
"subPackages": ["d"]
}

0 comments on commit 7a09759

Please sign in to comment.