hchevva commited on
Commit
a281ec5
·
verified ·
1 Parent(s): 8b1e2a5

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +19 -0
pyproject.toml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "toxra_core"
7
+ version = "0.1.0"
8
+ description = "TOXRA.AI private extraction core"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ dependencies = [
12
+ "pandas>=2.0",
13
+ "numpy>=1.24",
14
+ "pypdf>=4.0",
15
+ "openai>=1.0",
16
+ ]
17
+
18
+ [tool.setuptools]
19
+ packages = ["toxra_core"]