-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
105 lines (92 loc) · 3.1 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
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
100
101
102
103
104
105
#https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
#https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
#https://packaging.python.org/en/latest/tutorials/packaging-projects/#choosing-build-backend
#https://packaging.python.org/en/latest/specifications/version-specifiers/#version-specifiers
#https://packaging.python.org/en/latest/glossary/#term-Build-Frontend
#https://setuptools.pypa.io/en/latest/userguide/dependency_management.html
#https://setuptools.pypa.io/en/latest/userguide/datafiles.html
#https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "edg_acoustics"
version = "1.0.0-alpha.1"
description = "Wave-based room acoustic modeling package with the DG method"
authors = [
{ name = "Huiqing Wang", email = "[email protected]" },
{ name = "Artur Palha", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: General Public License v3.0",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"meshio >=5.3.4",
"modepy == 2021.1",
"scipy",
"gmsh",
] #https://setuptools.pypa.io/en/latest/userguide/dependency_management.html
keywords = [
"DG",
"room acoustic modeling",
"wave-based",
"finite element method",
"high-order",
"acoustics",
"impulse response",
"discontinuous Galerkin",
]
[project.urls]
Homepage = "https://github.com/Building-acoustics-TU-Eindhoven/edg-acoustics"
# Documentation = ""
Repository = "https://github.com/Building-acoustics-TU-Eindhoven/edg-acoustics"
Issues = "https://github.com/Building-acoustics-TU-Eindhoven/edg-acoustics/issues"
Changelog = "https://github.com/Building-acoustics-TU-Eindhoven/edg-acoustics/CHANGELOG.md"
[project.optional-dependencies] # dependencies that are not installed by default. This effectively means that you can create a “variant” of package with a set of extra functionalities.
dev = [
"coverage[toml]",
"pytest",
"pytest-cov",
"sphinx",
"sphinx_rtd_theme",
"sphinx-autoapi",
"tox",
"myst_parser",
]
publishing = ["twine", "wheel"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["edg_acoustics"]
command_line = "-m pytest"
# [tool.setuptools]
# py-modules = []
# [tool.tox]
# legacy_tox_ini = """
# [tox]
# envlist = py37,py38,py39
# skip_missing_interpreters = true
# [testenv]
# commands = pytest
# extras = dev
# """
[tool.pylint.parameter_documentation]
accept-no-param-doc = true
accept-no-raise-doc = true
accept-no-return-doc = true
accept-no-yields-doc = true
# Possible choices: ['sphinx', 'epytext', 'google', 'numpy', 'default']
default-docstring-type = "google"