forked from AlexKontorovich/PrimeNumberTheoremAnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlakefile.lean
27 lines (22 loc) · 849 Bytes
/
lakefile.lean
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
import Lake
open Lake DSL
package «PrimeNumberTheoremAnd» where
leanOptions := #[
⟨`pp.unicode.fun, true⟩, -- pretty-prints `fun a ↦ b`
⟨`pp.proofs.withType, false⟩,
⟨`autoImplicit, false⟩,
⟨`relaxedAutoImplicit, false⟩
]
@[default_target]
lean_lib «PrimeNumberTheoremAnd»
--
-- DO NOT REPLACE WITH '@ "master"': the pace of development of mathlib is too
-- fast for us to keep up. If you need to bump the version of mathlib, change
-- the commit to a more recent one.
--
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @ "e348a4c"
require EulerProducts from git
"https://github.com/MichaelStollBayreuth/EulerProducts.git" @ "757d816"
meta if get_config? env = some "dev" then require «doc-gen4» from git
"https://github.com/leanprover/doc-gen4.git" @ "b6ae1cf"