-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.59 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
[project]
name = "robotframework-httpctrl"
dynamic = ["version"]
authors = [
{ name = "Andrei Novikov", email = "spb.andr@yandex.ru" },
]
maintainers = [
{ name = "Andrei Novikov", email = "spb.andr@yandex.ru" },
]
description = "robotframework-httpctrl is a library for Robot Framework that provides HTTP/HTTPS client and HTTP server services."
readme = "PKG-INFO.rst"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">= 3.8"
dependencies = [
"robotframework",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework :: Library",
]
keywords = ["httpctrl", "http", "https", "robotframework", "client", "server", "json", "test", "testing"]
[project.urls]
homepage = "https://annoviko.github.io/robotframework-httpctrl/"
source = "https://github.com/annoviko/robotframework-httpctrl"
documentation = "https://annoviko.github.io/robotframework-httpctrl/"
tracker = "https://github.com/annoviko/robotframework-httpctrl/issues"
changelog = "https://github.com/annoviko/robotframework-httpctrl/blob/master/CHANGES"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["HttpCtrl", "HttpCtrl.utils"]
[tool.setuptools.dynamic]
version = { file = "VERSION" }