forked from teorth/analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlakefile.lean
More file actions
50 lines (36 loc) · 1.67 KB
/
lakefile.lean
File metadata and controls
50 lines (36 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import Lake
open Lake DSL
package «analysis» where
-- Settings applied to both builds and interactive editing
leanOptions := #[
⟨`pp.unicode.fun, true⟩ -- pretty-prints `fun a ↦ b`
]
-- add any additional package configuration options here
-- Require Batteries (a general-purpose utility library)
require batteries from git
"https://github.com/leanprover-community/batteries" @ "v4.19.0"
-- Require ImportGraph (transitive dep, now made direct to override version)
require importGraph from git
"https://github.com/leanprover-community/import-graph" @ "v4.19.0"
-- Require Mathlib (the comprehensive library of mathematics in Lean)
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @ "v4.19.0"
-- Require Pantograph (a library for automated theorem proving)
-- require pantograph from git
-- "https://github.com/lenianiva/Pantograph.git" @ "v0.3.1"
-- Require Plausible (transitive dep, now made direct to override version)
require plausible from git
"https://github.com/leanprover-community/plausible.git" @ "v4.19.0"
-- Require ProofWidgets4 (for interactive proof widgets)
require proofwidgets from git
"https://github.com/leanprover-community/ProofWidgets4.git" @ "v0.0.57"
-- Require quote4 (transitive dep, now made direct to override version)
require Qq from git
"https://github.com/leanprover-community/quote4" @ "v4.19.0"
@[default_target]
lean_lib «Analysis» where
-- add any library configuration options here
require checkdecls from git "https://github.com/PatrickMassot/checkdecls.git"
meta if get_config? env = some "dev" then
require «doc-gen4» from git
"https://github.com/leanprover/doc-gen4" @ "v4.19.0"