-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs, setuptools_scm, changelog, util etc.
Also in setup.cfg: - extra requires [docs], [dev] FIXME: - intersphinx links to Nek5000 documentation - internal autodoc and autosummary
- Loading branch information
Showing
19 changed files
with
296 additions
and
44 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Authors | ||
|
||
* [Ashwin Vishnu Mohanan](mailto:[email protected]) | ||
* [Luigi Antonialli](mailto:[email protected]) |
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,36 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
<!-- | ||
### Added | ||
### Changed | ||
### Deprecated | ||
### Removed | ||
### Fixed | ||
### Security | ||
Type of changes | ||
--------------- | ||
Added for new features. | ||
Changed for changes in existing functionality. | ||
Deprecated for soon-to-be removed features. | ||
Removed for now removed features. | ||
Fixed for any bug fixes. | ||
Security in case of vulnerabilities. | ||
--> | ||
|
||
## [Unreleased] | ||
- Paraview I/O for loading and plotting functions | ||
|
||
## [0.0.0] - 2020-01-17 | ||
|
||
### Added | ||
- Scripting for executing managing run parameters `eturb.params` | ||
- Python packaging | ||
- Sphinx + Doxygen + Breathe documentation |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../AUTHORS.md |
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 @@ | ||
../CHANGELOG.md |
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 @@ | ||
../CONTRIBUTING.md |
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 @@ | ||
../README.md |
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
Submodule Nek5000
updated
from f4f6c5 to 324134
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 @@ | ||
[build-system] | ||
requires = ["setuptools>=42.0.0", "wheel", "setuptools_scm"] |
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,11 +1,19 @@ | ||
[metadata] | ||
author = Ashwin Vishnu Mohanan | ||
author_email = [email protected] | ||
url = https://exabl.github.io/eturb | ||
name = eturb | ||
version = 0.0.1 | ||
description = Python utilities for eturb project | ||
long_description = file: README.md, HISTORY.md | ||
long_description_content_type = text/markdown | ||
license = BSD-3-Clause | ||
license_file = LICENSE | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Natural Language :: English | ||
Programming Language :: Python :: 3 | ||
|
||
[options] | ||
package_dir= | ||
|
@@ -14,6 +22,35 @@ packages=find: | |
install_requires = | ||
snakemake | ||
fluiddyn | ||
setup_requires = | ||
setuptools_scm | ||
|
||
[options.extras_require] | ||
docs = | ||
sphinx | ||
recommonmark | ||
sphinx_rtd_theme | ||
breathe | ||
setuptools_scm | ||
|
||
test = | ||
pytest | ||
|
||
dev = | ||
%(docs)s | ||
%(test)s | ||
ipython | ||
flake8 | ||
twine | ||
readme-renderer[md] | ||
|
||
[options.packages.find] | ||
where=src | ||
|
||
[options.entry_points] | ||
setuptools.file_finders = | ||
setuptools_scm = setuptools_scm.integration:find_files | ||
|
||
# setuptools.finalize_distribution_options = | ||
# setuptools_scm = setuptools_scm.integration:infer_version | ||
|
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,4 +1,14 @@ | ||
from setuptools import setup | ||
|
||
|
||
setup() | ||
# When https://github.com/pypa/setuptools/issues/1055 is fixed | ||
# this can be moved to setup.cfg | ||
setup( | ||
use_scm_version={ | ||
'write_to': 'src/eturb/_version.py', | ||
'write_to_template': ( | ||
'"""Autogenerated by setuptools_scm"""\n' | ||
'__version__ = "{version}"\n' | ||
), | ||
} | ||
) |
Oops, something went wrong.