-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (35 loc) · 1.46 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "hamel"
dynamic = ["version"]
description = "General Utilities"
readme = "README.md"
requires-python = ">=3.10.10"
license = {text = "Apache-2.0"}
authors = [{name = "Hamel Husain", email = "hamel.husain@gmail.com"}]
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['typer', 'youtube_transcript_api', 'httpx', 'fastcore', 'google-genai', 'openai-whisper', 'fastprogress', 'python-dotenv', 'rich', 'ipython', 'typing_extensions', 'google-api-python-client', 'google-auth-oauthlib', 'google-auth-httplib2', 'yt-dlp', 'yt-dlp-ejs']
[project.optional-dependencies]
screenshot = ['playwright']
dev = ['playwright']
[project.urls]
Repository = "https://github.com/hamelsmu/hamel"
Documentation = "https://hamelsmu.github.io/hamel"
[project.entry-points.nbdev]
hamel = "hamel._modidx:d"
[project.scripts]
ai-gem = "hamel.gem_cli:main"
zoom = "hamel.zoom_cli:main"
ai-annotate-talk = "hamel.annotate_talk_cli:main"
kit-broadcasts = "hamel.kit_cli:main"
xapi = "hamel.x_cli:main"
twitter = "hamel.x_cli:main"
youtube = "hamel.youtube_cli:main"
[tool.setuptools.dynamic]
version = {attr = "hamel.__version__"}
[tool.setuptools.packages.find]
include = ["hamel"]
[tool.nbdev]