-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (73 loc) · 2.12 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-physplot"
version = "1.0.0"
description = "Scientific plotting, workflow recording, and publication-ready plot generation for researchers."
readme = "README.md"
requires-python = ">=3.10"
license = "LicenseRef-PolyForm-Noncommercial-1.0.0"
license-files = ["LICENSE"]
authors = [
{ name = "M. Shiraz Ahmad" },
]
keywords = [
"plotting",
"scientific-visualization",
"matplotlib",
"data-analysis",
"workflow",
"gui",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"FigureForge>=0.3.3",
"matplotlib>=3.8",
"numpy>=1.24",
"openpyxl>=3.1",
"pandas>=2.0",
"PyQt6>=6.6",
"scipy>=1.10",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"pyinstaller>=6.0",
"pytest>=8",
"twine>=5",
]
[project.scripts]
physplot = "physplot.__main__:main"
physplot-gui = "physplot_gui.app.runner:run_app"
python-physplot = "physplot.__main__:main"
python-physplot-gui = "physplot_gui.app.runner:run_app"
[project.urls]
Homepage = "https://github.com/MShirazAhmad/PhysPlot"
Repository = "https://github.com/MShirazAhmad/PhysPlot"
Issues = "https://github.com/MShirazAhmad/PhysPlot/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["physplot*", "physplot_gui*"]
exclude = ["tests*", "docs*", "outputs*", "workflows*", "test_data*"]
[tool.setuptools.package-data]
physplot = ["inc/*.png"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"