-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (59 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
combine_as_imports = true
skip = ["venv", "benchmarks"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "inheritance_explorer"
version = "0.2.0"
description = "A tool for exploring complex inheritance patters in python code"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{ name="Chris Havlin", email="[email protected]" },
]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ['pydot',
'pycode_similar',
'numpy',
'matplotlib',
'pyvis',
'networkx',
'click',
'ipywidgets',
'jupyterlab'
]
license={file = "LICENSE"}
[tool.setuptools]
include-package-data = true
[project.scripts]
inheritance_explorer = "inheritance_explorer.cli:map_class"
[project.urls]
"Homepage" = "https://github.com/data-exp-lab/inheritance_explorer"
"Bug Tracker" = "https://github.com/data-exp-lab/inheritance_explorer/issues"
[project.optional-dependencies]
dev = [
"pytest>=3",
"pytest-cov",
"yt>4.1",
"pre-commit",
]
docs = [
"Sphinx==7.3.7",
"jinja2==3.1.4",
"nbsphinx",
]