-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.54 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
[project]
name = "calabru"
description = "Calibration of structural models"
readme = "README.md"
version = "0.1"
license = {file = "LICENSE"}
keywords = ["calibration", "structural", "models", "finite element", "measurement"]
authors = [
{name = "Jun Wei Ngan", email = "jun.ngan@monash.edu"},
{name = "Colin Caprani", email = "colin.caprani@monash.edu" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.8"
dependencies = [
"matplotlib",
"numpy",
"scipy",
]
# dynamic = ["version", "description"]
[project.urls]
documentation = "https://monashsmartstructures.github.io/pycba/"
repository = "https://github.com/monashsmartstructures/calabru/"
tracker = "https://github.com/monashsmartstructures/calabru/issues/"
[build-system]
requires = ["wheel >= 0.31.0",
"setuptools >= 48",
"twine>= 1.11.0",
"oldest-supported-numpy",
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]