-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* created requirements.txt * adapt github workflow * add dependencies in github workflow? I really have no idea, why it is not working now, because it literally tells me in one execution that it doesnt need to install cython and in the next line it cannot load it... * revert changes adding the dependency keyword, simply broke the pip workflow, I think. Bc afterwards, github wouldnt do the workflow anymore... * requirements in setup.pywq * fix typo * require wheel? --------- Co-authored-by: Patrick Quoika <[email protected]>
- Loading branch information
1 parent
540e413
commit 82bd28a
Showing
3 changed files
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Cython | ||
wheel |
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
description = "Calculate the entropy of a given set of data, using the fftw3 library.", | ||
author = "Johannes Kraml", | ||
author_email="[email protected]", | ||
|
||
install_requires=["Cython"], | ||
py_modules=['xentropy.dihedrals', 'xentropy.kde', 'xentropy.internal.constants', 'xentropy.xentropy', | ||
'xentropy.reweighting','xentropy.internal.resolution', | ||
'xentropy.internal.pre_post_processing'], | ||
|