Add package definitions.

This commit is contained in:
Valentin Boettcher 2019-08-14 11:04:12 +02:00
parent c60efe76e6
commit b6bfb0688a
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#|
This file is a part of cl-scrape-telegram-api
(c) 2019 Hiro https://protagon.space (hiro@protagon.space)
Author: Valentin Boettcher <hiro@protagon.space>
|#
(asdf:defsystem cl-scrape-telegram-api
:name "cl-scrape-telegram-api"
:version "0.0.1"
:author "Valentin Boettcher <hiro@protagon.space>"
:maintainer "Valentin Boettcher <hiro@protagon.space>"
:license "zlib"
:description "A tool to scrape the telegram api docs and create lisp code for cl-telegram."
:homepage ""
:bug-tracker ""
;; :source-control (:git "https://github.com/Shinmera/lquery.git")
:serial T
:components ((:file "package")
(:file "utils")
(:file "scrape"))
:depends-on (:alexandria :cl-ppcre :cl-arrows :trivia :cl-json :lquery :dexador))

20
package.lisp Normal file
View file

@ -0,0 +1,20 @@
#|
This file is a part of cl-scrape-telegram-api
(c) 2019 Hiro https://protagon.space (hiro@protagon.space)
Author: Valentin Boettcher <hiro@protagon.space>
|#
(defpackage :space.protagon.cl-telegram-scrape.utils
(:use :common-lisp :alexandria :cl-arrows)
(:export :lispify
:telegramify
:camel->symbol
:snake->keyword
:snake->symbol))
(defpackage :space.protagon.cl-telegram-scrape
(:nicknames :tg-scrape)
(:use :common-lisp :alexandria :cl-arrows :space.protagon.cl-telegram-scrape.utils :trivia)
(:export
:scrape-to-disk))