-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.61 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
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "vkms"
description = "Utility for saving messages from the VK social network"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Yaroslav Kikel", email = "[email protected]"}
]
dependencies = [
"pathvalidate>=2.5,<4",
"requests<3,>=2.24",
"Jinja2<4,>=3.1",
"minify-html<1,>=0.8",
"vk<4,>=3.0",
"SQLAlchemy>=1.4,<3"
]
urls.Homepage = "https://github.com/YariKartoshe4ka/vk-messages-saver"
readme = "README.md"
keywords = ["api", "parser", "vk", "messages", "saver"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
"Environment :: Console"
]
scripts = { vkms = "vkms.main:main" }
dynamic = ["version"]
[tool.setuptools]
packages = ["vkms"]
[tool.setuptools.dynamic]
version = {attr = "vkms.__version__"}
[tool.setuptools.package-data]
vkms = ["templates/*.html"]
[tool.setuptools_scm]
write_to = "vkms/version.py"
write_to_template = '''
"""Version information"""
__version__ = '{version}'
__version_tuple__ = {version_tuple}
'''