-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (30 loc) · 892 Bytes
/
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
[tool.poetry]
name = "ip_object_browser"
version = "0.3.0"
authors = ["Roee Nizan <[email protected]>"]
description = "Browse big nested data structures in ipython with keyboard"
license = "MIT"
homepage = "https://github.com/roee30/ip_object_browser"
repository = "https://github.com/roee30/ip_object_browser"
keywords = ["urwid", "json", "tui", "ipython"]
readme = "README.md"
include = [
"LICENSE"
]
classifiers = [
"Operating System :: OS Independent",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.7"
urwid = "^2.1.2"
boltons = "^20.2.1"
ipython = "^7.21.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"