forked from moritzgloeckl/overleaf-sync
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
33 lines (30 loc) · 824 Bytes
/
pyproject.toml
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
27
28
29
30
31
32
33
[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 = "[email protected]"
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",
"beautifulsoup4",
"yaspin",
"python-dateutil",
"click == 8.0.1",
"socketIO-client == 0.5.7.2",
"PyQt5",
"PyQt5-Qt5",
"PyQt5-sip",
"PyQtWebEngine",
"PyQtWebEngine-Qt5"
]
keywords = "overleaf sync latex tex"
[tool.flit.scripts]
ols = "olsync.olsync:main"
[tool.yapf]
column_limit = 100