-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added coverage actions Improved README and pyproject.toml * Added coverage badge * Fixed actions
- Loading branch information
1 parent
1a9d4dd
commit cb6e9d3
Showing
3 changed files
with
94 additions
and
34 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 |
---|---|---|
|
@@ -7,12 +7,15 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = 'pySSMF' | ||
version = '0.1.0' | ||
description = 'A Python package to solve the Slave-Spin Mean-Field equations for tight-binding models in strongly correlated systems' | ||
authors = [ | ||
{ name = "Jose M. Pizarro", email = "[email protected]" } | ||
] | ||
license = { text = "Apache-2.0" } | ||
maintainers = [ | ||
{ name = "Jose M. Pizarro", email = "[email protected]" } | ||
] | ||
dynamic = ["version"] | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.9" | ||
readme = "README.md" | ||
dependencies = [ | ||
|
@@ -29,11 +32,12 @@ dependencies = [ | |
[project.optional-dependencies] | ||
dev = [ | ||
'mypy==1.5.1', | ||
'pytest==3.10.0', | ||
'pytest', | ||
'pytest-timeout', | ||
'pytest-cov', | ||
'ruff', | ||
"structlog==22.3.0", | ||
"lxml_html_clean>=0.1.0", | ||
"PyQt5==5.15.10", | ||
] | ||
|
||
[tool.ruff] | ||
|