Minor restructure for platformio compatibility

This commit is contained in:
2022-11-25 21:59:10 -05:00
parent 6cc27427cf
commit d965ca142d
8 changed files with 41 additions and 12 deletions

26
library.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "ucLISP",
"version": "0.1.0",
"description": "A toy LISP implementation for microcontrollers",
"keywords": "lisp, language, scripting, garbage collector",
"repository":
{
"type": "git",
"url": "https://gitlab.maxregan.me/max/uclisp.git"
},
"authors":
[
{
"name": "Max Regan",
"email": "mgregan2@gmail.com",
"url": "https://www.gitlab.maxregan.me/max",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://gitlab.maxregan.me/max/uclisp",
"dependencies": {
},
"frameworks": "*",
"platforms": "*"
}