-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixup PR numbers in changelog * pyproject.toml * qcel address * unduplicate cov directive * adjust address * fully right address * avoid new geometric * more geometric
- Loading branch information
Showing
16 changed files
with
130 additions
and
2,482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ dependencies: | |
- dftd4-python=3.3.0 | ||
- mp2d >=1.1 | ||
- gcp | ||
- geometric | ||
- geometric=1.0 | ||
- optking | ||
- pymdi | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,108 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project.urls] | ||
homepage = "https://github.com/MolSSI/QCEngine" | ||
changelog = "https://github.com/MolSSI/QCEngine/blob/master/docs/source/changelog.rst" | ||
documentation = "https://molssi.github.io/QCEngine/" | ||
issues = "https://github.com/MolSSI/QCEngine/issues" | ||
|
||
[project] | ||
name = "qcengine" | ||
#version = "0.31.0" | ||
dynamic = ["version"] | ||
requires-python = ">=3.8" | ||
description = "A compute wrapper for Quantum Chemistry, ingesting and producing QCSchema for a variety of QC programs." | ||
authors = [ | ||
{ name="The QCArchive Development Team", email="[email protected]" }, | ||
] | ||
license = { file="LICENSE" } | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Framework :: Pydantic", | ||
"Framework :: Pydantic :: 2", | ||
] | ||
|
||
dependencies = [ | ||
"pyyaml", | ||
"py-cpuinfo", | ||
"psutil", | ||
"qcelemental>=0.50a1,<0.70.0", | ||
"pydantic >=2.1", | ||
"pydantic-settings", | ||
# "typing_extensions; python_version<'3.9'", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest", | ||
"pytest-cov", | ||
"codecov", | ||
"packaging", | ||
] | ||
lint = [ | ||
"pre-commit", | ||
"black >=22.1.0,<23.0a0", # if running outside of pre-commit | ||
"isort >=5.13.2", # if running outside of pre-commit | ||
# "mypy", | ||
# "autoflake", | ||
# "flake8", | ||
] | ||
docs = [ # probably >=py39 | ||
"numpydoc", | ||
# "docutils", | ||
"sphinx >=7.0.0", | ||
"sphinxcontrib-napoleon", | ||
"sphinx-rtd-theme", | ||
"autodoc-pydantic>=2.0", | ||
# "sphinx-automodapi", | ||
# "sphinx-autodoc-typehints", | ||
# "pydantic ==2.5.0", # for now | ||
# "pydantic-settings ==2.2.0", # for now | ||
] | ||
|
||
[project.scripts] | ||
qcengine = "qcengine.cli:main" | ||
|
||
[tool.black] | ||
line-length = 120 | ||
target-version = ['py37', 'py38'] | ||
target-version = ['py38'] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
line_length = 120 | ||
|
||
[tool.setuptools] | ||
packages = ["qcengine"] | ||
|
||
[aliases] | ||
test="pytest" | ||
|
||
[tool.setuptools.package-data] | ||
|
||
[tool.setuptools_scm] | ||
|
||
[tool.versioningit.vcs] | ||
default-tag = "0.0.99" # useful for CI/shallow clones | ||
|
||
[tool.pytest.ini_options] | ||
#filterwarnings = [ | ||
# "ignore::DeprecationWarning", | ||
# "ignore::PendingDeprecationWarning", | ||
#] | ||
markers = [ | ||
"long", | ||
"""slow: marks tests as slow (deselect with '-m "not slow"')""", | ||
"smoke", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.