-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (75 loc) · 1.73 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
# case-insensitive
name = "GDutils"
# https://hatch.pypa.io/latest/config/metadata/
dynamic = ["version"]
authors = [
{ name="Greg Detre", email="[email protected]" },
]
description = "A collection of useful utility functions (basics, data science/AI, web development, etc)"
readme = "README.md"
# because I use the | syntax for type Union
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
]
keywords = ["utilities", "strings", "dates", "data science", "web development", "llm", "ai",]
dependencies = [
"ipython",
"jinja2",
]
[project.optional-dependencies]
audio_lang = [
"azure-cognitiveservices-speech",
"cachetools",
"google-cloud-texttospeech",
"google-cloud-translate",
"elevenlabs",
# for playing mp3
"playsound",
# for playing mp3
"pygame",
# for playing mp3
"python-vlc",
"speech_recognition",
]
dev = [
"black",
"pytest",
]
dt = [
"humanize",
"pendulum",
]
html_web = [
"bs4",
]
llm = [
"cachetools",
# "llm", no longer using this
"openai",
"pillow", # for images
]
[project.urls]
Homepage = "https://github.com/gregdetre/gdutils"
Repository = "https://github.com/gregdetre/gdutils"
# Issues = "https://github.com/gregdetre/gdutils/issues"
# Documentation
# Changelog
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"dist/",
"gdutils/obsolete/",
"gdutils/todo/",
"tests/fixme_*.py",
]
[tool.hatch.version]
path = "__VERSION__.py"