diff --git a/README.rst b/README.rst index 5e5ef9e..8fdd9a2 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,7 @@ From PyPI:: Via Conda:: - $ conda install -c rnelsonchem pHcalc + $ conda install -c rnelsonchem phcalc If you have ``git`` installed on your system, then you can get the most recent, unrelased version from the `GitHub repo`_:: diff --git a/conda/meta.yaml b/conda/meta.yaml new file mode 100644 index 0000000..dd6c849 --- /dev/null +++ b/conda/meta.yaml @@ -0,0 +1,41 @@ +{% set name = "pHcalc" %} +{% set version = "0.2.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pHcalc-{{ version }}.tar.gz + sha256: 692aa59d92b5a3c2ce90f947be3166fd8964adb9246bd81d67b1c347f5713317 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.5 + - setuptools + - pip + run: + - python >=3.5 + - numpy >=1.10.0 + - scipy >=0.17.0 + +test: + imports: + - pHcalc + commands: + - pip check + requires: + - pip + +about: + summary: Systematic pH calculation package for Python + license: BSD-3-Clause + +extra: + recipe-maintainers: + - rnelsonchem diff --git a/pyproject.toml b/pyproject.toml index 4f5e970..ae1371c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pHcalc" -version = "0.1.2" +version = "0.2.0" description = "Systematic pH calculation package for Python" keywords = [ "pH", "systematic", "distribution", "titration", "acid", "base" ]