File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM python:3.10-bullseye
2
2
WORKDIR /app
3
- RUN pip install --upgrade pip && pip install numpy matplotlib seaborn scikit-learn yfinance scipy statsmodels sympy bokeh plotly dash networkx pyvis pandas
3
+ RUN pip install --upgrade pip && pip install numpy matplotlib seaborn scikit-learn yfinance scipy statsmodels sympy bokeh plotly dash networkx pyvis pandas agixtsdk
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ The container comes preloaded with the following packages:
20
20
- networkx
21
21
- pyvis
22
22
- pandas
23
+ - agixtsdk
23
24
24
25
## Installation
25
26
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
import os
3
3
4
- # Read the contents of your README file
5
4
this_directory = os .path .abspath (os .path .dirname (__file__ ))
6
5
with open (os .path .join (this_directory , "README.md" ), encoding = "utf-8" ) as f :
7
6
long_description = f .read ()
8
7
9
8
setup (
10
9
name = "safeexecute" ,
11
- version = "0.0.9 " ,
10
+ version = "0.0.10 " ,
12
11
description = "Safe way to execute Python code with containerization." ,
13
12
long_description = long_description ,
14
13
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments