diff options
author | David Timber <dxdt@dev.snart.me> | 2024-05-01 00:37:21 +0900 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-05-01 00:37:21 +0900 |
commit | 0881bc4df7ad5225da10e0028fdf73e95c8fa943 (patch) | |
tree | 0fcbc134c87e6a4579d29272634f0af83699afd4 /pyproject.toml |
Initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..380feb5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "okkybot" +version = "0.0.0" +authors = [ + { name="David Timber", email="dxdt@dev.snart.me" }, +] +description = "okkybot" +readme = "README.md" +requires-python = ">= 3.10" +dependencies = [ "pyjson5", "openai", "pyjwt[crypto]" ] + +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://github.com/kenu/funjava/" +Issues = "https://github.com/kenu/funjava/issues" |