-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
91 lines (81 loc) · 2.25 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyqrc"
version = "2.1.0"
description = "A Python program to project computed structures along normal modes for Quick Reaction Coordinate calculations"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Paton Research Group", email = "patonlab@colostate.edu"},
]
maintainers = [
{name = "Robert Paton", email = "robert.paton@colostate.edu"},
]
keywords = [
"computational-chemistry",
"thermochemistry",
"gaussian",
"orca",
"qchem",
"imaginary-frequencies",
"intrinsic-reaction-coordinate",
"normal-modes",
"transition-state",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
]
requires-python = ">=3.9"
dependencies = [
"cclib",
"numpy",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"pylint>=3.0",
]
[project.urls]
Homepage = "https://github.com/patonlab/pyQRC"
Repository = "https://github.com/patonlab/pyQRC"
Documentation = "https://github.com/patonlab/pyQRC#readme"
Issues = "https://github.com/patonlab/pyQRC/issues"
[project.scripts]
pyqrc = "pyqrc.pyQRC:main"
[tool.setuptools]
packages = ["pyqrc"]
include-package-data = true
[tool.setuptools.package-data]
pyqrc = ["examples/*"]
[tool.pylint.main]
py-version = "3.9"
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"invalid-name",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-locals",
"too-many-branches",
"too-many-statements",
"too-many-nested-blocks",
"too-few-public-methods",
]
[tool.pylint.format]
max-line-length = 120
[tool.ruff.lint]
# Ignore unused variable warnings in tests (common pattern for testing side effects)
per-file-ignores = {"tests/*" = ["F841"]}