-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 1.03 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
[build-system]
build-backend = "maturin"
requires = ["maturin"]
[project]
name = "polymers"
description = "Polymers Modeling Library"
authors = [
{email = "[email protected]"},
{name = "Michael R. Buche"}
]
requires-python = ">=3.8,<=3.13"
dependencies = ["numpy"]
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Rust',
]
[project.urls]
Documentation = "https://polymers.readthedocs.io"
Homepage = "https://sandialabs.github.io/Polymers"
Repository = "https://github.com/sandialabs/polymers"
[tool.pytest.ini_options]
python_files = ["test.py"]
testpaths = ["src"]
[tool.pylint.'MESSAGES CONTROL']
disable = """
cell-var-from-loop,
duplicate-code,
no-name-in-module,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods
"""