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

Add sphinx-parser to conda #28675

Merged
merged 6 commits into from
Jan 3, 2025
Merged
Changes from 3 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
52 changes: 52 additions & 0 deletions recipes/sphinx_parser/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{% set name = "sphinx_parser" %}
{% set version = "0.0.1" %}
{% set python_min = "3.9" %}
samwaseda marked this conversation as resolved.
Show resolved Hide resolved

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: b99ef1d2c07401936e196e25d03104a3292acc378ea2938b4463fef623b72bdf

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

requirements:
host:
- python {{ python_min }}
- pip
- setuptools
- versioneer
run:
- python >={{ python_min }}
- numpy >=1.26.4, <=2.2.0
- ase =3.23.0

test:
imports:
- sphinx_parser
requires:
- pip
- python {{ python_min }}
commands:
- pip check

about:
home: https://github.com/pyiron/sphinx_parser
summary: 'Parser for the DFT program SPHInX'
description: |
sphinx_parser is the python input and output parser of the DFT code SPHInX
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
# The doc_url and dev_url are optional.
samwaseda marked this conversation as resolved.
Show resolved Hide resolved
doc_url: https://sphinx_parser.readthedocs.io/
dev_url: https://github.com/pyiron/sphinx_parser

extra:
recipe-maintainers:
- samwaseda
Loading