-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 968 Bytes
/
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 = "bsmedit"
authors = [
{ name="Tianzhu Qiao", email="tq@feiyilin.com" },
]
license = {file = "LICENSE"}
description='C/C++/SystemC Visualizer'
readme = "README_pip.md"
requires-python = ">=3.0"
classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
'wxpython>=4.2.1', 'matplotlib>=3.8.1', 'numpy', 'click', 'PyOpenGL',
'PyOpenGL_accelerate', 'pandas', 'propgrid>=0.1.5', 'mplpanel>=0.1.8',
'aui2>=0.1.6', 'bsmutility>=0.2.3'
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "bsmedit.__version__"}
[project.urls]
"Homepage" = "http://bsmedit.feiyilin.com"
[project.gui-scripts]
bsmedit = "bsmedit.__main__:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
bsmedit = ["ico/*.icns", "ico/*.ico", "ico/*.svg"]
[options]
include_package_data = true