-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Roberto Pastor Muela <[email protected]> Co-authored-by: Kerry McAdams <[email protected]>
- Loading branch information
1 parent
8d3b136
commit 3a6affc
Showing
4 changed files
with
19 additions
and
24 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
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 |
---|---|---|
|
@@ -9,13 +9,9 @@ version = "0.7.dev0" | |
description = "A python client for Ansys HPC Platform Services" | ||
readme = "README.rst" | ||
requires-python = ">=3.9,<4.0" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "ANSYS, Inc.", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "ANSYS, Inc.", email = "[email protected]"}, | ||
] | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "ANSYS, Inc.", email = "[email protected]" }] | ||
maintainers = [{ name = "ANSYS, Inc.", email = "[email protected]" }] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
|
@@ -40,10 +36,7 @@ dependencies = [ | |
] | ||
|
||
[project.optional-dependencies] | ||
tests = [ | ||
"pytest==8.0.0", | ||
"pytest-cov==4.1.0", | ||
] | ||
tests = ["pytest==8.0.0", "coverage==7.4.1"] | ||
|
||
doc = [ | ||
"ansys-sphinx-theme==0.13.2", | ||
|
@@ -67,7 +60,7 @@ build = [ | |
"build==1.0.3", | ||
"twine==4.0.2", | ||
"wheel", | ||
"datamodel-code-generator==0.24.2" | ||
"datamodel-code-generator==0.24.2", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -107,10 +100,9 @@ log_cli = true | |
log_cli_level = "INFO" | ||
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)" | ||
log_cli_date_format = "%Y-%m-%d %H:%M:%S" | ||
addopts = """-ra -s --durations=0 -p pytest_cov --cov=ansys.hps --cov-report html:.cov/html \ | ||
--cov-report xml:.cov/xml --cov-report term -vv --cov-append""" | ||
addopts = "-ra -vv" | ||
filterwarnings = [ | ||
"ignore::urllib3.exceptions.InsecureRequestWarning", | ||
"ignore::DeprecationWarning:pkg_resources.*", | ||
"ignore::ansys.hps.client.UnverifiedHTTPSRequestsWarning", | ||
] | ||
] |
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