mirror of
https://github.com/vale981/cl-scrape-telegram-api
synced 2025-03-04 15:51:38 -05:00
Add package definitions.
This commit is contained in:
parent
c60efe76e6
commit
b6bfb0688a
2 changed files with 41 additions and 0 deletions
21
cl-scrape-telegram-api.asd
Normal file
21
cl-scrape-telegram-api.asd
Normal 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
20
package.lisp
Normal 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))
|
Loading…
Add table
Reference in a new issue