-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 2.33 KB
/
pyproject.toml
File metadata and controls
88 lines (78 loc) · 2.33 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
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydasa"
dynamic = ["version"]
description = "PyDASA is a Python library for dimensional analysis using the Buckingham Pi theorem across scientific and engineering domains."
readme = "README.md"
requires-python = ">=3.10"
license = "GPL-3.0-or-later"
authors = [
{name = "@SFAM", email = "sa-artea@uniandes.edu.co"}
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
]
dependencies = [
"antlr4-python3-runtime==4.11",
"numpy>=1.26.4",
"scipy>=1.13.0",
"sympy>=1.12",
"matplotlib>=3.8.0",
"pandas>=2.1.0",
"SALib>=1.4.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.1.1",
"twine>=6.1.0",
]
docs = [
"sphinx>=7.3.7",
"pydata-sphinx-theme>=0.14.0",
"sphinx-autodoc-typehints>=1.24.0",
"sphinx-autoapi>=3.0.0",
"myst-parser>=2.0.0",
"sphinx-copybutton>=0.5.2",
"sphinx-favicon>=1.0.1",
"sphinx-gitstamp>=0.3.3",
"sphinx-prompt>=1.8.0",
"sphinx-markdown-builder>=0.6.5",
"myst-parser>=2.0.0", # For Markdown support
"nbsphinx>=0.9.0", # For Jupyter notebooks
]
[project.urls]
Homepage = "https://github.com/DASA-Design/PyDASA"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pydasa = ["core/cfg/*.json"]
[tool.setuptools.dynamic]
version = {attr = "pydasa._version.__version__"}
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["src/pydasa/_version.py:__version__"]
branch = "main"
build_command = "python -m build"
hvcs = "github"
commit_message = "chore(release): {version} [skip ci]"
tag_format = "v{version}"
major_on_zero = false
allow_zero_version = true
[tool.semantic_release.branches.main]
match = "main"
prerelease = false
[tool.semantic_release.commit_parser_options]
allowed_tags = ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]