Skip to content
Merged
Changes from 10 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
65 changes: 65 additions & 0 deletions recipes/diffpy.srxconfutils/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{% set name = "diffpy.srxconfutils" %}
{% set version = "1.0.0" %}
{% set python_min = "3.11" %}

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

source:
url: https://pypi.org/packages/source/d/diffpy_srxconfutils/diffpy_srxconfutils-{{ version }}.tar.gz
sha256: 5353245c112087da49af804807e4932d33fd67c337a4a6793139a4e836de566c

build:
noarch: python
number: 0
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed .
entry_points:
- diffpy-srxconfutils = diffpy.srxconfutils.srxconfutils_app:main

requirements:
host:
- python {{ python_min }}
- setuptools
- setuptools-git-versioning >=2.0
- pip

run:
- python >={{ python_min }}
- numpy
- traits
- traitsui

test:
requires:
- python {{ python_min }}
- flake8
- pytest
- codecov
- coverage
- pytest-cov
- pytest-env
- pip

source_files:
- tests

commands:
- pip check
- pytest

about:
home: https://github.com/diffpy.srxconfutils/diffpy.srxconfutils/
summary: Configuration utilities for project. Part of xPDFsuite
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about "used in diffpy.xpdsuite and a link to the website where this is described. Not hte github which is private but somewhere on diffpy.org

license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.rst
description: |
This is a utility Python package for doing science.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should describe the package. This looks like some template text.

doc_url: http://diffpy.srxconfutils.github.io/diffpy.srxconfutils/
dev_url: https://github.com/diffpy.srxconfutils/diffpy.srxconfutils/

extra:
recipe-maintainers:
- sbillinge
- zmx27
Loading