Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upf_to_json python package #9862

Merged
merged 5 commits into from
Oct 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions recipes/upf_to_json/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set name = "upf_to_json" %}
{% set version = "0.9.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 08f3a4c739c6e5f59e601086d56496a4905fe60a2ffdb5a2e85fa8e57de6f8c3

build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"

requirements:
host:
- python
- pip
run:
- python
- six

test:
imports:
- upf_to_json

about:
home: https://github.com/simonpintarelli/upf_to_json
license: BSD-3-Clause
license_family: BSD
scopatz marked this conversation as resolved.
Show resolved Hide resolved
license_file: LICENSE
summary: 'Unified Pseudopotential Format to JSON converter for Python'

description: |
UPF is a file format to describe atomic pseudo-potentials used by (DFT) density
functional theory codes. This package provides scripts for converting UPF v1 and
UPF v2 (Unified Pseudopotential Format) to json format as required by the SIRIUS
DFT library SIRIUS <https://github.com/electronic-structure/SIRIUS>.

dev_url: https://github.com/simonpintarelli/upf_to_json

extra:
recipe-maintainers:
- simonpintarelli