-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (87 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (87 loc) · 1.93 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.package-data]
sdynpy = ["*.ui"]
[project]
name = 'sdynpy'
authors = [
{email = 'dprohe@sandia.gov'},
{name = 'Daniel P. Rohe'}
]
license = { file = "LICENSE" }
description = 'A Structural Dynamics Library for Python'
readme = 'README.rst'
dependencies = [
"numpy",
"scipy",
"matplotlib",
"qtpy",
"PyQt5",
"pyqtgraph",
"netCDF4",
"pandas",
"python-pptx",
"Pillow",
"pyvista",
"pyvistaqt",
"openpyxl",
"vtk",
"h5py",
]
requires-python = '>=3.10'
version = '0.23.0'
classifiers = [
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.10',
'Framework :: Pytest',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
]
[project.optional-dependencies]
lrm = [
'joblib','psutils'
]
pdf3d = [
'vtk-u3dexporter'
]
tshaker = [
'npTDMS'
]
test = ['pytest','pytest-cov','coverage']
lint = ["pylint", "pylint-json2html"]
book = ["jupyter-server", "ipykernel"]
[project.urls]
Documentation = 'https://sandialabs.github.io/sdynpy/'
Repository = 'https://github.com/sandialabs/sdynpy'
[tool.pytest.ini_options]
junit_family = 'xunit2'
addopts = '--doctest-modules --doctest-continue-on-failure --doctest-glob="*.rst" --verbose --junitxml=report.xml'
testpaths = 'tests'
[tool.coverage.run]
omit = [
"setup.py",
"*__main__.py"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no coverage",
"if __name__ == '__main__'",
"def main",
"def __repr__"
]
[tool.coverage.html]
directory = "coverage_html"
[tool.flake8]
max-line-length = 100
[tool.pycodestyle]
count = true
max-line-length = 160
statistics = true