Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • m219063/moist_thermodynamics
1 result
Show changes
Commits on Source (7)
*.pyc
......@@ -4,9 +4,8 @@ pytest:
stage: test
before_script:
- python3 -m pip install -r requirements.txt
- python3 -m pip install pytest
script:
- pytest --doctest-modules --junitxml=report.xml
- pytest --junitxml=report.xml
artifacts:
when: always
reports:
......
from .functions import *
from . import constants
__version__ = "0.5.0"
[build-system]
requires = ["setuptools>=42", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[metadata]
name = moist_thermodynamics
version = attr: moist_thermodynamics.__version__
description = Constants and functions for the treatment of moist atmospheric thermodynamics.
long_description = file: README.md
license = BSD 3-Clause License
[options]
packages = find:
install_requires =
numpy
scipy
[flake8]
max-line-length = 88
extend-ignore = E203
[tool:pytest]
addopts = --doctest-modules
# content of setup.py
from setuptools import setup, find_packages
from setuptools import setup
setup(
name="moist_thermodynamics",
version="0.5",
description="Constants and functions for the treatment of moist atmospheric thermodynamics",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
],
)
setup()