A slightly modified quickproject-ish template.
- Name
- pigeon
- Description
- s-exp based python
- Version
- 0.1.0
#+TITLE: pigeon
s-exp based python
There is nothing for tests as of now.
(defsystem #:pigeon
:description "s-exp based python"
:author "Abhinav Tushar <lepisma@fastmail.com>"
:license "GPLv3"
:version "0.1.0"
:depends-on ()
:components
((:file "package")
(:module "src"
:depends-on ("package")
:serial t
:components
((:file "pigeon")))))
(defpackage #:pigeon
(:use #:cl))
(in-package #:pigeon)
gen license:gpl-3.0