-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1015 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1015 Bytes
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
[tool.poetry]
name = "dynamic"
version = "1.1"
description = "A Modern, user-friendly command-line HTTP client for the API testing, and if you're stuck - Search and browse StackOverflow without leaving the CLI"
authors = ["IndianOpenSourceFoundation"]
license = "General Public License GNU"
[tool.poetry.dependencies]
python = "^3.6"
certifi = "2020.6.20"
chardet = "3.0.4"
idna = "2.10"
requests = "2.24.0"
termcolor = "1.1.0"
urllib3 = "1.25.10"
rich = "9.9.0"
oauthlib = "3.1.0"
requests-oauthlib = "1.3.0"
colorama = "0.4.4"
configparser = "5.0.2"
crayons = "0.4.0"
selenium = "3.141.0"
webdriver-manager = "3.3.0"
simple-term-menu = "1.0.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "dynamic" },
{ include = "dynamic_cli.egg-info" },
{ include = "LICENSE" },
{ include = "poetry.lock" },
{ include = "pyproject.toml" },
{ include = "README.md" },
{ include = "setup.py" }
]