Packages
Codecom is a small tool written in elixir designed for code comparisons and directory structure and hierarchy comparisons. Its main objective is to get findings through git repositories in order to reveal code theft. It is targeted at academic applications and learning purposes.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Codecom.Mixfile do
use Mix.Project
def project do
[app: :codecom,
version: "0.0.1",
elixir: "1.3.3",
description: description(),
package: package(),
deps: deps()]
end
def application do
[]
end
defp deps do
[{:ex_doc, "~> 0.14.3"}]
end
defp description do
"""
Codecom is a small tool written in elixir designed for code comparisons and directory structure and hierarchy comparisons.
Its main objective is to get findings through git repositories in order to reveal code theft.
It is targeted at academic applications and learning purposes.
"""
end
defp package do
[# These are the default files included in the package
name: :codecom,
files: ["mix.exs", "*.beam", "README*", "LICENSE*"],
maintainers: ["Francisco Bravo"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/fran-bravo/codecom"}
]
end
end