-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 895 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
39
40
41
42
43
44
[project]
name = "expr_codegen"
authors = [
{ name = "wukan", email = "wu-kan@163.com" },
]
description = "symbol expression to polars expression tool"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["polars", "expression", "talib"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
'black',
'Jinja2',
'networkx',
'loguru',
'sympy',
'ast-comments',
]
dynamic = ["version"]
[project.optional-dependencies]
streamlit = [
'streamlit',
'streamlit-ace',
'more_itertools',
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "expr_codegen/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["expr_codegen"]
include-package-data = true
[tool.hatch.build.targets.sdist]
include = ["expr_codegen*"]