-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
82 lines (71 loc) · 2.15 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
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ospgrillage"
dynamic = ["version"]
description = "Bridge deck grillage analysis using OpenSeesPy"
license = {text = "MIT"}
keywords = ["bridge, grillage, openseespy"]
authors = [ {name = "Monash Smart Structures", email = "colin.caprani@monash.edu"},
{name = "Jun Wei Ngan", email = "jun.ngan@monash.edu"},
{name = "Colin", email = "colin.caprani@monash.edu"}]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"openseespy>=3.2.2.6",
"opsvis>=1.0",
"matplotlib",
"numpy>=1.26",
"pandas",
"scipy>=1.10.1",
"xarray",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://monashsmartstructures.github.io/ospgrillage/"
Documentation = "https://monashsmartstructures.github.io/ospgrillage/"
Source = "https://github.com/MonashSmartStructures/ospgrillage"
Tracker = "https://github.com/MonashSmartStructures/ospgrillage/issues"
[project.optional-dependencies]
test = ["pytest >= 6.2.2"]
gui = ["PyQt6", "PyQt6-WebEngine", "plotly >= 5.0"]
legacy-viz = ["vfo>=0.0.6"]
[tool.setuptools]
platforms = ["any"]
include-package-data = true
license-files = ["LICENSE.md"]
#[tool.setuptools.packages]
#find = {namespaces = false}
[tool.setuptools.dynamic]
version = {attr = "ospgrillage.__version__"}
[tool.distutils.bdist_wheel]
universal = 1
[tool.aliases]
test = "pytest"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
pythonpath = [
".", "src",
]
[project.scripts]
ospgui = "ospgrillage.ospgui:main"