-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
81 lines (71 loc) · 1.96 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
[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="chris.havlin@gmail.com" },
]
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",
]
[tool.mypy]
files = ["inheritance_explorer",]
python_version = "3.10"
warn_unused_configs = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
implicit_optional = true
disable_error_code = ["import-untyped", "import-not-found"]
no_implicit_reexport = false