-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
51 lines (46 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
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[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',
# 'polars_ta',
]
dynamic = ["version"]
[project.optional-dependencies]
streamlit = [
'streamlit',
'streamlit-ace',
'more_itertools',
]
[tool.setuptools]
packages = [
"expr_codegen",
"expr_codegen.latex",
"expr_codegen.pandas",
"expr_codegen.polars_group",
"expr_codegen.polars_over",
]
[tool.setuptools.package-data]
"expr_codegen.pandas" = ["*.j2"]
"expr_codegen.polars_group" = ["*.j2"]
"expr_codegen.polars_over" = ["*.j2"]
[tool.setuptools.dynamic]
version = { attr = "expr_codegen._version.__version__" }