Skip to content

Commit be724c2

Browse files
committed
Switch to pyproject.toml
1 parent 02439df commit be724c2

2 files changed

Lines changed: 39 additions & 50 deletions

File tree

pyproject.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "vk_api"
7+
version = "11.10.0"
8+
description = "Python модуль для создания скриптов для социальной сети Вконтакте (vk.ru API wrapper)"
9+
readme = {file = "README.md", content-type = "text/markdown"}
10+
requires-python = ">=3.6"
11+
license = "Apache-2.0"
12+
authors = [{name = "python273", email = "vk_api@python273.pw"}]
13+
dependencies = ["requests>=2.20.0,<3.0.0"]
14+
classifiers = [
15+
"Operating System :: OS Independent",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.6",
19+
"Programming Language :: Python :: 3.7",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
26+
"Programming Language :: Python :: 3.14",
27+
]
28+
29+
[project.optional-dependencies]
30+
vkstreaming = ["websocket-client"]
31+
vkaudio = ["beautifulsoup4"]
32+
33+
[project.urls]
34+
Homepage = "https://github.com/python273/vk_api"
35+
Download = "https://github.com/python273/vk_api/archive/v11.10.0.zip"
36+
37+
[tool.setuptools]
38+
packages = ["vk_api", "jconfig"]
39+
license-files = ["LICENSE"]

setup.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)