aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 32389b75b221581b0a79a1b674ca2b5affe96556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"