Romain Graux commited on
Commit
9c88354
β€’
0 Parent(s):

Initial commit

Browse files
Files changed (4) hide show
  1. README.md +11 -0
  2. app.py +17 -0
  3. packages.txt +0 -0
  4. requirements.txt +1 -0
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Volcano plots
3
+ emoji: πŸŒ‹
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: gradio
7
+ sdk_version: 4.37.2
8
+ python_version: 3.11.9
9
+ app_file: app.py
10
+ pinned: true
11
+ ---
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ import gradio as gr
5
+
6
+ CSS = """
7
+ """
8
+
9
+
10
+ with gr.Blocks(css=CSS) as block:
11
+ gr.Markdown(
12
+ """
13
+ ## Volcano plots
14
+ """
15
+ )
16
+
17
+ block.launch()
packages.txt ADDED
File without changes
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio==4.37.2