-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (35 loc) · 1.11 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
[project]
name = "vertopal"
version = "1.1.0"
description = "Convert your files in terminal using Vertopal API"
readme = "README.md"
requires-python = ">=3.7, <4"
license = {text = "MIT"}
keywords = ["convert", "file", "vertopal", "api", "converter"]
authors = [
{name = "Vertopal", email = "contact@vertopal.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"requests >= 2.28.2"
]
[project.urls]
"Homepage" = "https://www.vertopal.com"
"Funding" = "https://www.vertopal.com/en/donate"
"Source" = "https://github.com/vertopal/vertopal-cli"
"Bug Tracker" = "https://github.com/vertopal/vertopal-cli/issues"
[project.scripts]
vertopal = "vertopal.vertopal:main"
[tool.setuptools]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"