gaphor/pyproject.toml
Dan Yeaw f55e582299
Remove futurize dependency, drop support for Python 2
Signed-off-by: Dan Yeaw <dan@yeaw.me>
2019-02-23 22:06:02 -05:00

70 lines
1.7 KiB
TOML

[tool.poetry]
name = "gaphor"
version = "1.0.0"
description = "Gaphor is a UML modeling tool"
authors = [
"Arjan J. Molenaar <gaphor@gmail.com>",
"Dan Yeaw <dan@yeaw.me>"
]
license = "LGPL-2.0"
readme = "README.rst"
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 :: GNU General Public License (GPL)",
"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 = "~2.7 || ^3.5"
pycairo = "^1.18"
PyGObject = "^3.30"
gaphas = "^1.0.0"
"zope.component" = "^4.5"
[tool.poetry.dev-dependencies]
pytest = "^4.0"
pytest-sugar = "^0.9.2"
pytest-cov = "^2.5"
pytest-runner = "^4.2"
black = { version = "^18.3-alpha.0", python = "^3.6" }
pre-commit = "^1.12"
tox = "^3.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
skipsdist = True
envlist = py356, py36, py37
[testenv]
whitelist_externals =
poetry
xvfb-run
skip_install = true
commands =
poetry install -v
xvfb-run -a pytest
"""