-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.07 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
[project]
name = "gw_dsl_parser"
dynamic = ["version"]
requires-python = ">=3.6"
description = "gw_dsl_parser: Convert your graphic-walker workflow to sql"
authors = [ { name = "kanaries", email = "[email protected]" } ]
license-files = { paths = ["LICENSE"] }
readme = "README.md"
keywords = [ 'graphic-walker', 'pygwalker' ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"wasmtime>=12.0.0"
]
[project.urls]
homepage = "https://github.com/Kanaries/gw-dsl-parser-py"
repository = "https://github.com/Kanaries/gw-dsl-parser-py"
# changelog, documentation
[project.optional-dependencies]
dev = [
"build",
"twine",
"pytest",
]
[tool.hatch]
version = { path = "gw_dsl_parser/__init__.py" }
[tool.hatch.build]
include = [
"gw_dsl_parser",
]
exclude = [ "/tests" ]
artifacts = [
"gw_dsl_parser/dsl_parser.wasm"
]
[tool.hatch.build.targets.sdist]
include = [
"README.md", "LICENSE",
"gw_dsl_parser"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"