Skip to content

Commit

Permalink
add Project.toml (#158)
Browse files Browse the repository at this point in the history
* add Project.toml

* Add a standard .gitignore file

This is useful to have alongside a Project.toml in order to avoid
committing the Manifest.toml file.
  • Loading branch information
jverzani authored Apr 12, 2019
1 parent 2cb8b73 commit fa1dadc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
docs/build
docs/site
Manifest.toml
18 changes: 18 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name = "Roots"
uuid = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"

[deps]
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
SpecialFunctions = ">= 0.1.1"
julia = "≥ 1.0.0"

[extras]
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["JSON", "SpecialFunctions", "Statistics", "Test"]

0 comments on commit fa1dadc

Please sign in to comment.