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 aiida-core.atomic_tools sub-package #67

Merged
merged 10 commits into from
Jul 11, 2022
7 changes: 4 additions & 3 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 22 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Set Version and Build-Number
{% set version = "2.0.1" %}
{% set build = 3 %}
{% set build = 4 %}

# Set names for the AiiDA Meta-Package and accompanying Sub-Packages
{% set aiidameta = "aiida" %}
{% set aiidacore = "aiida-core" %}
{% set aiidaservice = "aiida-core.services" %}
{% set aiida_atomic_tools = "aiida-core.atomic_tools" %}

# Define the Source and AiiDA Meta-Package
package:
Expand Down Expand Up @@ -71,7 +72,7 @@ outputs:
- upf_to_json ~=0.9.2
- wrapt ~=1.11.1
run_constrained:
- {{ aiidaservice }} =={{ version }}
- {{ pin_subpackage(aiidaservice, exact=True) }}
test:
requires:
- pip
Expand Down Expand Up @@ -103,6 +104,25 @@ outputs:
- postgres --help
- rabbitmqctl help

- name: {{ aiida_atomic_tools }}
build:
noarch: python
requirements:
run:
- {{ pin_subpackage(aiidacore, exact=True) }}
- ase ~=3.18
- matplotlib-base ~=3.3,>=3.3.4
- pycifrw ~=4.4
- pymatgen >=2019.7.2,<=2022.1.9,!=2019.9.7
- pymysql ~=0.9.3
- seekpath ~=1.9,>=1.9.3
- spglib ~=1.14
test:
requires:
- pip
commands:
- pip check

about:
home: http://aiida.net
license: MIT
Expand Down