Skip to content
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ea6c15a
Fix using ruff fixable linters
Ali-Tehrani Jan 10, 2024
c36d26f
Ignore rule in ruff
Ali-Tehrani Jan 10, 2024
7b6ae70
Fix remaining ruff errors
Ali-Tehrani Jan 10, 2024
c33c30c
Update pyproject so that github actions work now
Ali-Tehrani Jan 10, 2024
f3cbed6
Comment out the test that fails, ref. the issue
Ali-Tehrani Jan 11, 2024
301dd5f
Add permissions to github action for pytest-cov
Ali-Tehrani Jan 11, 2024
5dcfe5e
Fix test that wasn't asserting
Ali-Tehrani Jan 11, 2024
67c0a14
Remove coverage comment and just do coverage
Ali-Tehrani Jan 11, 2024
3e5df48
Merge branch 'master' into fix_linters
Ali-Tehrani Jan 11, 2024
f926d06
Update pre-commit so it doesn't run on websites
Ali-Tehrani Jan 11, 2024
313b71a
Update precommit to only work on gbasis and tests
Ali-Tehrani Jan 11, 2024
2be59ca
Add my own pytest-cov
Ali-Tehrani Jan 11, 2024
0db7ba0
Fix previous bad merge
Ali-Tehrani Jan 11, 2024
619a56c
Fix test error with not using factorial2
Ali-Tehrani Jan 11, 2024
3476723
Update editorconfig to remove the comment
Ali-Tehrani Jan 11, 2024
9303716
Fix black issues
Ali-Tehrani Jan 11, 2024
f73c446
Precommit only work on python files
Ali-Tehrani Jan 11, 2024
666c868
Remove trailing white-space for pre-commit
Ali-Tehrani Jan 11, 2024
1af396b
Merge branch 'master' into fix_linters
Ali-Tehrani Jan 11, 2024
93cf65c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 11, 2024
7b8269e
Add python=3.8 to teh test
Ali-Tehrani Jan 11, 2024
a36c523
Fix ruff linter complaints
Ali-Tehrani Jan 11, 2024
adf1d37
Merge branch 'master' into fix_linters
Ali-Tehrani Feb 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ dependencies = [
]
dynamic = ["version"]

[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["gbasis"] # package names should match these glob patterns (["*"] by default)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Specifically this line should pass the initial setup of the package that will run action for building and updating website later


[project.urls]
Documentation = "https://gbasis.qcdevs.org"
Issues = "https://github.com/theochem/gbasis/issues"
Expand Down