12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
- [project]
- name = "graph-exploring-tool"
- authors = [
- {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
- ]
- readme = "README.rst"
- requires-python = ">=3.9"
- classifiers = [
- "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
- "Programming Language :: Python :: 3",
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Developers",
- "Natural Language :: English",
- ]
- dynamic = ["version", "description"]
- license = {file = "LICENSE"}
- keywords = ["graph"]
- dependencies = [
- "owly~=0.0.3",
- "toml~=0.10.2",
- "arklog~=0.5.1",
- "dacite~=1.8.1",
- "rdflib~=6.3.2",
- "certifi~=2023.7.22",
- ]
- [project.optional-dependencies]
- test = [
- "pytest~=7.4.0",
- ]
- doc = [
- "sphinx~=7.1.1",
- ]
- dev = [
- "tox~=4.6.4",
- "pip~=23.2.1",
- "flit~=3.9.0",
- "twine~=4.0.2",
- "invoke~=2.2.0",
- "jinja2~=3.1.2",
- "flake8~=6.1.0",
- "coverage~=7.2.7",
- "pyinstaller~=5.13.0",
- "pyinstaller-hooks-contrib~=2023.6",
- ]
- graphical = [
- "dearpygui~=1.9.1",
- ]
- [project.urls]
- source = "https://git.rys.one/dtdesign/graph-exploring-tool"
|