-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.02 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
[tool.poetry]
name = "genuml"
version = "0.6.1"
description = "Generate PlantUML diagram code from Java class files"
authors = ["Simon Muller <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/samuller/genuml"
repository = "https://github.com/samuller/genuml"
keywords = ["plantuml", "uml", "java"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Documentation",
"Topic :: Multimedia :: Graphics :: Editors",
]
[tool.poetry.scripts]
genuml = "genuml.genuml:app"
[tool.poetry.dependencies]
python = "^3.8.1"
typer = "~0.4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-cov = "^3.0.0"
flake8 = "6.1.0"
mypy = "1.6.1"
flake8-docstrings = "^1.6.0"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.mypy]
files = "genuml"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"