-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (38 loc) · 1.02 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
[tool.poetry]
name = "astboom"
version = "0.4.2"
license = "MIT"
readme = "README.md"
repository = "https://github.com/lensvol/astboom"
keywords = ["ast"]
description = "Visualize Python AST in console."
authors = ["Kirill Borisov <lensvol@gmail.com>"]
include = [
"LICENSE",
]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.dependencies]
python = "^3.6"
asciitree = "^0.3.3"
click = "^7.0"
libcst = "^0.3.1"
pyyaml = "^5.3"
[tool.poetry.dev-dependencies]
ipython = {version = "^7.8", optional = true}
ipdb = "^0.12.3"
[tool.poetry.scripts]
astboom = 'astboom.cli:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"