-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
57 lines (51 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "N2G"
version = "0.3.3"
description = "Need To Graph"
authors = ["Denis Mulyalin <[email protected]>"]
maintainers = ["Denis Mulyalin <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dmulyalin/N2G"
repository = "https://github.com/dmulyalin/N2G"
documentation = "https://n2g.readthedocs.io/"
keywords = ["Diagramming", "Graphing", "Networks"]
classifiers = [
"Topic :: Utilities",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = "^3.7"
# optional dependencies for extras definition
ttp = { version = "0.9.*", optional = true, markers = "python_version >= '3.6'" }
ttp_templates = { version = "0.3.*", optional = true, markers = "python_version >= '3.6'" }
flask = { version = "2.2.2", optional = true, markers = "python_version >= '3.7'" }
openpyxl = { version = "3.1.*", optional = true, markers = "python_version >= '3.7'" }
python-igraph = { version = "0.10.*", optional = true, markers = "python_version >= '3.6'" }
[tool.poetry.dev-dependencies]
bandit = { version = "1.7.*", markers = "python_version >= '3.7'" }
black = { version = "23.1.*", markers = "python_version >= '3.7'" }
flake8 = { version = "4.0.*", markers = "python_version >= '3.7'" }
pre-commit = { version = "2.15.*", markers = "python_version >= '3.7'" }
pyenchant = { version = "3.2.*", markers = "python_version >= '3.7'" }
pylint = { version = "2.12.*", markers = "python_version >= '3.7'" }
pytest = { version = "^7.2.*", markers = "python_version >= '3.7'" }
xmltodict = { version = "^0.*", markers = "python_version >= '3.7'" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
n2g = 'N2G.utils.N2G_cli:cli_tool'
[tool.poetry.extras]
full = [
"openpyxl",
"ttp",
"ttp_templates",
"flask",
"python-igraph",
]