-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 845 Bytes
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
[project]
name = "csv-to-dot"
dynamic = ["version"]
description = "Convert a 2 columns CSV file to a .dot, who can be converted with Graphviz to .jpg, .ps, ..."
readme = "README.md"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Valentin Henon", email = "vhenon@mindbaz.com" }
]
urls = { repository = "https://github.com/Mindbaz/python-csv-to-dot" }
requires-python = ">=3.9"
dependencies = [
"Jinja2",
]
[project.scripts]
csv_to_dot = "entry_points_csv_to_dot.csv_to_dot:run"
[project.optional-dependencies]
dev = [
"pynose",
"coverage",
]
[tool.setuptools.dynamic]
version = { attr = "csv_to_dot.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = [
"csv_to_dot",
"csv_to_dot.resources",
"entry_points_csv_to_dot",
]
[tool.setuptools.package-data]
"*" = ["*.j2"]