File size: 559 Bytes
8a656d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[project]
name = "script_gen"
version = "0.1.0"
description = "script-gen using crewAI"
authors = [
    { name = "Your Name", email = "you@example.com" },
]
requires-python = ">=3.10,<3.13"
dependencies = [
    "crewai[tools]>=0.98.0,<1.0.0",
    "deepgram-sdk>=3.9.0",
    "moviepy>=2.1.2",
]

[project.scripts]
script_gen = "script_gen.main:run"
run_crew = "script_gen.main:run"
train = "script_gen.main:train"
replay = "script_gen.main:replay"
test = "script_gen.main:test"

[build-system]
requires = [
    "hatchling",
]
build-backend = "hatchling.build"