]> git.rocketbowman.com Git - krass.git/commitdiff
Add minimal infrastructure.
authorKyle Bowman <kyle+github@rocketbowman.com>
Sun, 14 Apr 2024 14:59:17 +0000 (10:59 -0400)
committerKyle Bowman <kyle+github@rocketbowman.com>
Sun, 14 Apr 2024 14:59:17 +0000 (10:59 -0400)
pyproject.toml [new file with mode: 0644]
requirements.txt [new file with mode: 0644]

diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644 (file)
index 0000000..1977b07
--- /dev/null
@@ -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 (file)
index 0000000..8ec8edd
--- /dev/null
@@ -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