tommytracx commited on
Commit
708ab2e
·
verified ·
1 Parent(s): 26efa42

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +15 -0
pyproject.toml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "deepboreai-sdk"
3
+ version = "0.1.0"
4
+ description = "Python SDK and CLI for DeepBoreAI"
5
+ authors = [{name="DeepBoreAI Team", email="[email protected]"}]
6
+ readme = "README.md"
7
+ requires-python = ">=3.8"
8
+ dependencies = [
9
+ "requests",
10
+ "websocket-client",
11
+ "typer[all]"
12
+ ]
13
+
14
+ [project.scripts]
15
+ deepboreai = "deepboreai_sdk.cli:app"