forked from svennniiii/overleaf-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (24 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
26 lines (24 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "olsync"
dist-name = "overleaf-sync"
description-file = "README.md"
author = "Moritz Glöckl"
author-email = "moritzgloeckl@users.noreply.github.com"
home-page = "https://github.com/moritzgloeckl/overleaf-sync"
classifiers = ["License :: OSI Approved :: MIT License", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3"]
requires-python = ">=3"
requires = [
"requests == 2.*",
"beautifulsoup4 == 4.11.1",
"yaspin == 2.*",
"python-dateutil~=2.8.1",
"click == 8.*",
"socketIO-client == 0.5.7.2",
"PySide6 == 6.*"
]
keywords = "overleaf sync latex tex"
[tool.flit.scripts]
ols = "olsync.olsync:main"