#1: Zabalíčkování katex-serveru

This commit is contained in:
Jan Černohorský 2023-07-18 15:18:10 +02:00
parent 6982b31996
commit 7b77499012
8 changed files with 12 additions and 2 deletions

1
.gitignore vendored
View file

@ -14,3 +14,4 @@ public/
**/*.egg-info
build/
dist/
**/node_modules

View file

@ -1,10 +1,11 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=61.0","setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "formatitko"
version = "0.0.1"
#version = "0.0.1"
dynamic = ["version"]
authors = [
{ name="Greenscreener ", email="gs@grsc.cz" },
{ name="Organizers of KSP", email="ksp-tech@ksp.mff.cuni.cz" }
@ -24,3 +25,11 @@ classifiers = [
[project.scripts]
formatitko = "formatitko.formatitko:main"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["src/formatitko/katex-server/node_modules"]