-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 1 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
[build-system]
requires = ["setuptools>=67.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bsmplot"
authors = [
{ name="Tianzhu Qiao", email="[email protected]" },
]
license = {file = "LICENSE"}
description='bsmplot is a tool to visualize time series'
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
'wxpython>=4.2.1', 'matplotlib>=3.8.1', 'numpy', 'scipy', 'click>=8.1', 'pandas',
'pyulog', 'propgrid>=0.1.6', 'mplpanel>=0.2.0', 'aui2>=0.1.7', 'zmq',
'bsmutility>=0.2.6','ply', 'charset_normalizer', 'h5py'
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "bsmplot.__version__"}
[project.urls]
"Homepage" = "https://github.com/tianzhuqiao/bsmplot"
[project.gui-scripts]
bsmplot = "bsmplot.__main__:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
bsmplot = ["ico/*.icns", "ico/*.ico", "ico/*.svg"]
[options]
include_package_data = true