-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.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
[project]
authors = [
{email = '[email protected]'},
{name = 'Chad B. Hovey'},
{email = '[email protected]'},
{name = 'Michael R. Buche'},
]
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Rust',
]
description = 'automesh'
dependencies = [
'numpy',
]
dynamic = ["version"]
name = 'automesh'
requires-python = '>=3.8,<3.14'
[project.optional-dependencies]
dev = [
'black',
'pdoc',
'pre-commit',
'pycodestyle',
'pytest',
'pytest-cov',
]
[project.urls]
Documentation = 'https://automesh.readthedocs.io'
Homepage = 'https://autotwin.github.io/automesh'
Repository = 'https://github.com/autotwin/automesh'
[tool.pytest.ini_options]
python_files = [
'*.py'
]
testpaths = [
'tests/'
]
[build-system]
build-backend = 'maturin'
requires = [
'maturin==1.8.1'
]
[tool.maturin]
features = [
'pyo3/extension-module'
]