48 lines
855 B
Plaintext
48 lines
855 B
Plaintext
package Euler
|
|
version = 0.0.0
|
|
authors = "Nathan McCarty <nathan@mccarty.io>"
|
|
license = "Parity Public License 7.0.0"
|
|
-- brief =
|
|
-- readme =
|
|
-- homepage =
|
|
-- sourceloc =
|
|
-- bugtracker =
|
|
|
|
-- the Idris2 version required (e.g. langversion >= 0.5.1)
|
|
-- langversion
|
|
|
|
-- packages to add to search path
|
|
-- depends =
|
|
|
|
-- modules to install
|
|
modules = PrimeSieve
|
|
, PrimeSieve.Util
|
|
|
|
-- main file (i.e. file to load at REPL)
|
|
main = PrimeSieve
|
|
|
|
-- name of executable
|
|
executable = primesieve
|
|
-- opts =
|
|
sourcedir = "src"
|
|
-- builddir =
|
|
-- outputdir =
|
|
|
|
-- script to run before building
|
|
-- prebuild =
|
|
|
|
-- script to run after building
|
|
-- postbuild =
|
|
|
|
-- script to run after building, before installing
|
|
-- preinstall =
|
|
|
|
-- script to run after installing
|
|
-- postinstall =
|
|
|
|
-- script to run before cleaning
|
|
-- preclean =
|
|
|
|
-- script to run after cleaning
|
|
-- postclean =
|