2019-11-03 00:06:22 +03:00
[ tool . poetry ]
name = "gaphor"
version = "1.1.1"
description = "Gaphor is the simple modeling tool written in Python."
authors = [
"Arjan J. Molenaar <gaphor@gmail.com>" ,
"Dan Yeaw <dan@yeaw.me>"
]
readme = "README.md"
homepage = "https://gaphor.readthedocs.io/"
repository = "https://github.com/gaphor/gaphor"
documentation = "https://gaphor.readthedocs.io/"
keywords = [ "gtk+" , "diagram" , "UML" , "MBSE" , "gaphor" , "modeling" ]
classifiers = [
"Development Status :: 5 - Production/Stable" ,
"Environment :: X11 Applications :: GTK" ,
"Intended Audience :: Developers" ,
"Intended Audience :: End Users/Desktop" ,
"Intended Audience :: Information Technology" ,
"License :: OSI Approved :: Apache Software License" ,
"Operating System :: MacOS :: MacOS X" ,
"Operating System :: Microsoft :: Windows" ,
"Operating System :: POSIX" ,
"Operating System :: Unix" ,
"Programming Language :: Python" ,
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based" ,
"Topic :: Software Development :: Documentation" ,
]
[ tool . poetry . dependencies ]
python = "^3.7"
pycairo = "^1.18"
PyGObject = "^3.30"
gaphas = "^1.0.0"
importlib_metadata = "^0.23"
2019-11-04 18:45:30 +03:00
typing_extensions = "^3.7.4"
2019-11-09 11:57:22 +03:00
generic = { version = "^1.0.0-beta.1" , allows-prereleases = true }
2019-11-03 00:06:22 +03:00
[ tool . poetry . dev-dependencies ]
tomlkit = "^0.5"
pytest = "^5.0"
pytest-cov = "^2.5"
pytest-runner = "^4.2"
2019-11-04 18:45:30 +03:00
black = { version = "^19.10b0" , python = "^3.6" }
mypy = "0.740"
2019-11-03 00:06:22 +03:00
pre-commit = "^1.12"
pyinstaller = "^3.5"
sphinx = "^2.2"
recommonmark = "^0.6.0"
sphinx-rtd-theme = "^0.4.3"
2019-11-10 23:29:35 +03:00
babel = "^2.7.0"
2019-11-19 18:14:22 +03:00
babelgladeextractor = "^0.6.0"
2019-11-10 04:23:55 +03:00
flake8 = "^3.7.9"
isort = "^4.3.21"
2019-11-03 00:06:22 +03:00
[ tool . poetry . scripts ]
gaphor = 'gaphor:main'
gaphorconvert = 'gaphor.tools.gaphorconvert:main'
[ tool . poetry . plugins . "gaphor.services" ]
"component_registry" = "gaphor.services.componentregistry:ComponentRegistry"
"event_manager" = "gaphor.services.eventmanager:EventManager"
"properties" = "gaphor.services.properties:Properties"
"undo_manager" = "gaphor.services.undomanager:UndoManager"
"element_factory" = "gaphor.UML.elementfactory:ElementFactory"
"file_manager" = "gaphor.ui.filemanager:FileManager"
"recent_files" = "gaphor.ui.recentfiles:RecentFiles"
"main_window" = "gaphor.ui.mainwindow:MainWindow"
"preferences" = "gaphor.ui.preferences:Preferences"
2019-11-19 01:24:14 +03:00
"shortcuts" = "gaphor.ui.shortcuts:Shortcuts"
2019-11-03 00:06:22 +03:00
"export_menu" = "gaphor.ui.menufragment:MenuFragment"
"tools_menu" = "gaphor.ui.menufragment:MenuFragment"
"copy" = "gaphor.services.copyservice:CopyService"
"sanitizer" = "gaphor.services.sanitizerservice:SanitizerService"
"help" = "gaphor.services.helpservice:HelpService"
"namespace" = "gaphor.ui.namespace:Namespace"
"toolbox" = "gaphor.ui.toolbox:Toolbox"
"diagrams" = "gaphor.ui.mainwindow:Diagrams"
"consolewindow" = "gaphor.plugins.console:ConsoleWindow"
"elementeditor" = "gaphor.ui.elementeditor:ElementEditor"
"diagram_export" = "gaphor.plugins.diagramexport:DiagramExport"
"xmi_export" = "gaphor.plugins.xmiexport:XMIExport"
2019-11-10 04:23:55 +03:00
[ tool . isort ]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = [ "cairo" , "gaphas" , "generic" , "gi" , "importlib_metadata" , "pytest" , "recommonmark" , "setuptools" , "tomlkit" , "typing_extensions" ]
skip = "flatpak,.venv,build,dist"
skip_glob = "*/uml2.py"
filter_files = true
2019-11-03 00:06:22 +03:00
[ build-system ]
requires = [ "poetry==1.0.0b3" ]
build-backend = "poetry.masonry.api"