aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorElvis Claros Castro <elvis@claros.ar>2026-09-26 18:44:59 -0300
committerElvis Claros Castro <elvis@claros.ar>2026-09-26 18:44:59 -0300
commit85df8ffe8d6f623e9e195220e5a70edffdad7507 (patch)
tree25b9838c5b959be96b532925972a381189f4658a /pyproject.toml
downloadoverleaf-ce-sync-85df8ffe8d6f623e9e195220e5a70edffdad7507.tar.gz
overleaf-ce-sync-85df8ffe8d6f623e9e195220e5a70edffdad7507.zip
Initial import: two-way sync CLI for self-hosted Overleaf CEHEADmain
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..32389b7
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,22 @@
+[build-system]
+requires = ["setuptools>=61"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "overleaf-ce-sync"
+version = "1.0.0"
+description = "Two-way git-like sync CLI for a self-hosted Overleaf Community Edition"
+readme = "README.md"
+license = {text = "MIT"}
+authors = [{name = "Elvis Claros Castro"}]
+requires-python = ">=3.8"
+dependencies = ["requests>=2.28"]
+
+[project.scripts]
+overleaf-ce-sync = "overleaf_ce:main"
+
+[tool.setuptools]
+py-modules = ["overleaf_ce"]
+
+[project.urls]
+Source = "https://git.all.ar/pub/overleaf-ce-sync"