-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.25 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "structural_starterkit"
authors = [{name = "Connor Ferster", email = "connor@structuralpython.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
dependencies = [
"numpy",
"pandas",
"openpyxl",
"lxml",
"shapely>=2.0.0",
"matplotlib",
"plotly",
"sectionproperties>=3.5.0",
"concreteproperties>=0.6.4",
"pycba>=0.5.2",
"PyNiteFEA",
"scipy",
"handcalcs",
"more-itertools",
"forallpeople",
"pytest",
"rich",
"tqdm",
"papermodels>=0.19.0",
"xlwings",
"IPython",
"ipywidgets",
"ipykernel",
"jupyterlab",
"jupyterlab-mathjax3",
"nbconvert",
"python-docx",
"pynite-tools>=0.6.7",
"sectionproperties-tools>=0.4.1",
"millrun>=0.3.0",
"jsonchain>=0.5.1",
"papermill>=2.6.0",
"great-tables>=0.17.0",
"xl-engine>=0.4.0",
"nb-hideinputs>=0.2.0",
"cookiecutter"
]
[project.urls]
Home = "https://github.com/structuralpython/structural_starterkit"
[project.scripts]
starterkit_verify = "structural_starterkit.__main__:check_installs"