forked from robbievanleeuwen/concrete-properties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
108 lines (99 loc) · 2.82 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
98
99
100
101
102
103
104
105
106
107
108
[tool.poetry]
name = "concreteproperties"
version = "0.6.3"
description = "A python package to determine cross-section propreties of reinforced concrete sections."
license = "MIT"
authors = [
"Robbie van Leeuwen <robbie.vanleeuwen@gmail.com>",
]
maintainers = [
"Robbie van Leeuwen <robbie.vanleeuwen@gmail.com>",
]
readme = "README.md"
homepage = "https://github.com/robbievanleeuwen/concrete-properties"
repository = "https://github.com/robbievanleeuwen/concrete-properties"
documentation = "https://concrete-properties.readthedocs.io"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "concreteproperties", from = "src" },
{ include = "src/concreteproperties/py.typed"},
]
include = []
[tool.poetry.urls]
Changelog = "https://github.com/robbievanleeuwen/concrete-properties/releases"
"Bug Tracker" = "https://github.com/robbievanleeuwen/concrete-properties/issues"
[tool.poetry.dependencies]
python = ">=3.9.0,<3.13"
numpy = "^1.26.4"
scipy = "^1.12.0"
matplotlib = "^3.8.3"
shapely = "^2.0.3"
triangle = "^20230923"
rich = "^13.7.1"
click = "^8.1.7"
more-itertools = "^10.2.0"
sectionproperties = "^3.2.2"
[tool.poetry.dev-dependencies]
black = "^24.2.0"
coverage = { extras = ["toml"], version = "^7.4.3" }
darglint = "^1.8.1"
flake8 = "^7.0.0"
flake8-bugbear = "^24.2.6"
flake8-docstrings = "^1.7.0"
flake8-rst-docstrings = "^0.3.0"
flake8-pytest-style = "^1.7.2"
furo = "^2024.01.29"
ipykernel = "^6.29.3"
ipython = "^8.18.1" # 8.19 and above drops 3.9 support
ipywidgets = "^8.1.2"
isort = "^5.13.2"
nbconvert = "^7.16.2"
nbsphinx = "^0.9.3"
notebook = "^7.1.1"
pep8-naming = "^0.13.3"
pre-commit = "^3.6.2"
pre-commit-hooks = "^4.5.0"
Pygments = "^2.17.2"
pytest = "^8.0.2"
pyupgrade = "^3.15.1"
sphinx = "^7.2.6"
sphinx-autobuild = "^2024.2.4"
sphinx-click = "^5.1.0"
sphinx-copybutton = "^0.5.2"
sphinxext-opengraph = "^0.9.1"
[tool.poetry.scripts]
concreteproperties = "concreteproperties.__main__:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["concreteproperties", "tests"]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"
lines_after_imports = 2
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"