From 3a18fac8b2676d5e1e01c3867dd9196acce942e3 Mon Sep 17 00:00:00 2001 From: Kyle Bowman Date: Sun, 14 Apr 2024 10:59:17 -0400 Subject: [PATCH] Add minimal infrastructure. --- pyproject.toml | 25 +++++++++++++++++++++++++ requirements.txt | 5 +++++ 2 files changed, 30 insertions(+) create mode 100644 pyproject.toml create mode 100644 requirements.txt diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1977b07 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "test" +version = "0.0.1" +authors = [ + { name="Kyle Bowman", email="kylebowman14@gmail.com" }, +] +description = "TODO" +readme = "README.md" +requires-python = ">=3.11" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.scripts] +render = "render:main" + +[project.urls] +Homepage = "None" +Issues = "None" \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8ec8edd --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +markdown-it-py==3.0.0 +mdit-py-plugins==0.4.0 +mdurl==0.1.2 +proto @ git+ssh://git@10.5.1.242:/srv/git/proto.git@216b5236d55d9b95f02c0a5731858051c8b36f58 +# Don't forget to `pip install -e .` for dev environment. \ No newline at end of file -- 2.39.5