aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
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"