forked from BasilPH/vizel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.01 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
[tool.poetry]
name = "vizel"
version = "0.3.0"
description = "Vizualise a Zettelkasten"
authors = ["Basil Philipp <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/BasilPH/vizel"
repository = "https://github.com/BasilPH/vizel"
keywords = ["zettelkasten", "knowledge-management"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Utilities",
"Topic :: Text Processing",
]
[tool.poetry.dependencies]
python = "^2.7 || ^3.5"
networkx = [
{version = "2.2", python="^2.7"},
{version = "2.4", python="^3.5"}
]
click = "^7.1.1"
graphviz = "^0.13.2"
six="^1.14.0"
[tool.poetry.dev-dependencies]
pytest = [
{version = "^4.6", python="^2.7"},
{version = "^5.2", python="^3.5"}
]
[tool.poetry.scripts]
vizel = 'vizel.cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"