-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.04 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
[tool.poetry]
name = "codegraph"
version = "0.1.0"
license = "MIT"
readme = "docs/README.rst"
homepage = "https://github.com/xnuinside/codegraph"
repository = "https://github.com/xnuinside/codegraph"
description = "Tool that create a graph of code to show dependencies between code entities (methods, classes and etc)."
authors = ["xnuinside <xnuinside@gmail.com>"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
matplotlib = "^3.6"
networkx = "^2.8"
clifier = "^0.0.3"
[tool.poetry.dev-dependencies]
pytest = "7.1.3"
[tool.poetry.scripts]
codegraph = 'codegraph.main:cli'
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"