-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpyproject.toml
97 lines (90 loc) · 2.42 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
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
89
90
91
92
93
94
95
96
97
[project]
name = "concreteproperties"
version = "0.6.4"
description = "A python package to determine cross-section propreties of reinforced concrete sections."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Robbie van Leeuwen", email = "[email protected]" }
]
maintainers = [
{ name = "Robbie van Leeuwen", email = "[email protected]" }
]
keywords = [
"concrete",
"reinforced-concrete",
"prestressed-concrete",
"post-tensioned-concrete",
"cross-section",
"structural-engineering",
"finite-element-analysis",
"computational-mechanics",
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10,<3.13"
dependencies = [
"sectionproperties~=3.5.0",
"numpy~=1.26.4",
"scipy~=1.14.1",
"matplotlib~=3.9.2",
"shapely~=2.0.6",
"cytriangle~=1.0.3",
"rich[jupyter]~=13.9.3",
"more-itertools~=10.5.0",
"quantiphy~=2.20",
]
[project.urls]
Homepage = "https://concrete-properties.readthedocs.io"
Documentation = "https://concrete-properties.readthedocs.io"
Repository = "https://github.com/robbievanleeuwen/concrete-properties"
Issues = "https://github.com/robbievanleeuwen/concrete-properties/issues"
Changelog = "https://github.com/robbievanleeuwen/concrete-properties/releases"
[dependency-groups]
docs = [
"furo==2024.8.6",
"sphinx==8.1.3",
"notebook==7.2.2",
"ipykernel==6.29.5",
"ipython==8.29.0",
"nbsphinx==0.9.5",
"nbconvert==7.16.4",
"sphinx-autobuild==2024.10.03",
"sphinx-copybutton==0.5.2",
"sphinxext-opengraph==0.9.1",
]
test = [
"pytest==8.3.3",
"pytest-check==2.4.1",
"coverage[toml]==7.6.4",
]
lint = [
"pre-commit==4.0.1",
"ruff==0.7.1",
"pyright==1.1.386",
]
[tool.uv]
default-groups = ["docs", "test", "lint"]
[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.10"
include = ["src"]
exclude = ["**/__init__.py"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["concreteproperties", "tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"