Skip to content

Commit 9e4d2e9

Browse files
committed
Declare MIT package metadata
1 parent 2390054 commit 9e4d2e9

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ DSPEx follows a rigorous test-driven development approach with comprehensive cov
11921192

11931193
## License
11941194

1195-
Same as original DSPy project.
1195+
This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.
11961196

11971197
## Acknowledgments
11981198

mix.exs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
defmodule Dspex.MixProject do
22
use Mix.Project
33

4+
@source_url "https://github.com/nshkrdotcom/ds_ex"
5+
46
def project do
57
[
68
app: :dspex,
79
version: "0.1.0",
810
elixir: "~> 1.18",
911
start_permanent: Mix.env() == :prod,
1012
deps: deps(),
13+
package: package(),
1114
elixirc_options: elixirc_options(Mix.env()),
1215
dialyzer: [
1316
plt_add_apps: [:mix],
@@ -68,4 +71,11 @@ defmodule Dspex.MixProject do
6871
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
6972
]
7073
end
74+
75+
defp package do
76+
[
77+
licenses: ["MIT"],
78+
links: %{"GitHub" => @source_url}
79+
]
80+
end
7181
end

0 commit comments

Comments
 (0)