-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.26 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
49
50
51
[tool.poetry]
name = "webpub1c"
version = "0.1.0"
description = "1C: Enterprise infobase web publication tool"
authors = ["Dmitry Belyaev <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/b4tman/webpub1c"
repository = "https://github.com/b4tman/webpub1c"
keywords = ["1C", "apache", "publication", "web", "infobase"]
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
[tool.poetry.dependencies]
python = "^3.9"
jinja2 = "3.0"
fire = "0.4.0"
pyyaml = "6.0.1"
pathvalidate = "2.4.1"
transliterate = "1.10.2"
markupsafe = "2.0.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
flake8 = "^5.0.4"
black = "^23.1.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=7.1,<7.2"
myst-parser = "^2.0.0"
sphinx-rtd-theme = "^1.2.2"
sphinx-design = "^0.5.0"
sphinx-copybutton = "^0.5.2"
[tool.poetry.scripts]
webpub1c = "webpub1c.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"