-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
47 additions
and
38 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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
prune tests | ||
exclude requirements.txt | ||
exclude requirements-dev.txt | ||
exclude .gitignore | ||
exclude .travis.yml | ||
include README.rst | ||
include CHANGELOG.rst | ||
include LICENSE |
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,16 +1,8 @@ | ||
from datetime import datetime | ||
from fftlog._fftlog import fhti, fftl, fht, fhtq | ||
|
||
__all__ = ['fhti', 'fftl', 'fht', 'fhtq'] | ||
|
||
# Version | ||
try: | ||
# - Released versions just tags: 1.10.0 | ||
# - GitHub commits add .dev#+hash: 1.10.1.dev3+g973038c | ||
# - Uncommitted changes add timestamp: 1.10.1.dev3+g973038c.d20191022 | ||
from .version import version as __version__ | ||
except ImportError: | ||
# If it was not installed, then we don't know the version. We could throw a | ||
# warning here, but this case *should* be rare. fftlog should be installed | ||
# properly! | ||
__version__ = 'unknown-'+datetime.today().strftime('%Y%m%d') | ||
# Not using setuptools_scm, as in pyfftlog, because of numpy-setup. | ||
# Has to be adjusted in setup.py too! | ||
__version__ = '0.2.1' |
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,9 +1,6 @@ | ||
# GLOBAL REQUIREMENTS | ||
-r requirements.txt | ||
|
||
# SETUP RELATED | ||
setuptools_scm | ||
|
||
# FOR TESTING | ||
pytest | ||
coveralls | ||
|
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