stefanof commited on
Commit
9f4bf0f
1 Parent(s): ff56002

Upload huggingface-text.test

Browse files
Files changed (1) hide show
  1. huggingface-text.test +31 -0
huggingface-text.test ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ defmodule HuggingfaceHub.MixProject do
2
+ use Mix.Project
3
+
4
+ def project do
5
+ [
6
+ app: :huggingface_hub,
7
+ escript: [main_module: Huggingface_hub.CLI],
8
+ version: "0.1.0",
9
+ elixir: "~> 1.12",
10
+ start_permanent: Mix.env() == :prod,
11
+ deps: deps()
12
+ ]
13
+ end
14
+
15
+ # Run "mix help compile.app" to learn about applications.
16
+ def application do
17
+ [
18
+ extra_applications: [:logger, :jason]
19
+ ]
20
+ end
21
+
22
+ # Run "mix help deps" to learn about dependencies.
23
+ defp deps do
24
+ [
25
+ # {:dep_from_hexpm, "~> 0.3.0"},
26
+ # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
27
+ {:hackney, "~> 1.0"},
28
+ {:jason, "~> 1.2"}
29
+ ]
30
+ end
31
+ end