-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.9 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "textwatermark"
version = "0.3.3"
description = "A watermark library for text."
keywords = ["watermark", "text", 'blind']
readme = "README.md"
authors = ["Monyer <monyer@126.com>"]
maintainers = []
license = "Apache"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Plugins",
"Framework :: Pytest",
"Framework :: tox",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Communications :: File Sharing",
]
homepage = "https://textwatermark.jd.army/"
repository = "https://github.com/JDArmy/TextWatermark"
documentation = "https://textwatermark.jd.army/"
[tool.poetry.dependencies]
python = "^3.10"
dynaconf = "^3.1"
click = "^8.1"
bitstring = "^4.0"
numpy = "^1.24"
[tool.poetry.group.dev.dependencies]
tox = "^4.4"
virtualenv = "^20.19"
pylint = "^2.16"
isort = "^5.12"
pytest = "^7.2"
pytest-mock = "^3.10"
mkdocs = "^1.4"
mkdocs-material = "^9.0"
mkdocstrings = "^0.20"
mkdocstrings-python = "^0.8"
mkdocs-include-markdown-plugin = { version = "^4.0", python = "^3.8,<3.12" }
mkdocs-static-i18n = "^0.52"
build = "^0.10"
twine = "^4.0"
mypy = "^1.1.1"
black = ">=23.1,<25.0"
coverage = "^7.2.1"
pytest-cov = "^4.0.0"
[tool.isort]
profile = "black"
[tool.poetry.scripts]
textwatermark = "textwatermark.cmdline:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/JDArmy/TextWatermark/issues"
"Changelog" = "https://textwatermark.jd.army/changelog/"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"