-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.08 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sea_starterkit"
authors = [{name = "Connor Ferster", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
dependencies = [
"streamlit",
"numpy",
"pandas",
"openpyxl",
"lxml",
"shapely>=2.0.0",
"matplotlib",
"plotly",
"kaleido",
"sectionproperties>=3.5.0",
"concreteproperties>=0.6.4",
"pycba>=0.5.2",
"PyNiteFEA>=0.0.98",
"scipy",
"handcalcs",
"more-itertools",
"pynite_plotly",
"forallpeople",
"pytest",
"rich",
"tqdm",
"papermodels",
"xlwings",
"jupyterlab",
"IPython",
"ipywidgets",
"ipykernel",
"jupyterlab-mathjax3",
"nbconvert",
"flit",
"python-docx",
"constable",
"black",
]
[project.urls]
Home = "https://github.com/connorferster/sea_starterkit"
[project.scripts]
pfse_verify = "sea_starterkit.__main__:check_installs"