-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "siyuanyuque"
version = "0.1.1"
description = "Sync SiYuan with Yuque"
authors = ["clouder <[email protected]>"]
license = "MIT"
repository = "https://www.github.com/Clouder0/siyuanyuque"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Flake8",
"Framework :: Pytest",
"Framework :: tox",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
"Typing :: Typed"
]
readme = "README.md"
[tool.poetry.scripts]
siyuanyuque = "siyuanyuque.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
siyuanhelper = "^0.2.0"
dynaconf = "^3.1.8"
httpx = "^0.22.0"
[tool.poetry.dev-dependencies]
mypy = "^0.950"
flake8 = "^4.0.1"
flake8-isort = "^4.1.1"
pep8-naming = "^0.12.1"
flake8-comprehensions = "^3.8.0"
flake8-bugbear = "^22.4.25"
flake8-quotes = "^3.3.1"
flake8-simplify = "^0.19.2"
flake8-use-fstring = "^1.3"
pre-commit = "^2.18.1"
black = "^22.3.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"