File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11defmodule 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
7181end
You can’t perform that action at this time.
0 commit comments