From e235605d424e787c5abbf38b4acfdd68a1883c8e Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 25 Dec 2022 17:22:15 -0500 Subject: initial commit of code --- pyproject.toml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..41eca1a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,32 @@ +[build-system] +requires = ["flit_core>=3.2"] +build-backend = "flit_core.buildapi" + +[project] +name = "moyaiBot" +version = "0.0.1" +description = "moyai" +authors = [ + { name="seth", email="getchoo@tuta.io" }, +] +#readme = "README.md" +requires-python = ">=3.8" +dependencies = [ + "discord.py >=2.0.0", +] + +[project.optional-dependencies] +dev = [ + "toml", + "yapf", +] + +[project.urls] +"Homepage" = "https://github.com/getchoo/moyaiBot" +"Bug Tracker" = "https://github.com/getchoo/moyaiBot/issues" + +[project.scripts] +moyaibot = "moyaiBot:main" + +[tool.yapf] +use_tabs = true \ No newline at end of file -- cgit v1.2.3