Skip to content

Commit ae572cb

Browse files
author
SimonBoothroyd
authored
Merge pull request #190 from openforcefield/evaluator
Migrate to Evaluator Naming
2 parents 80aa4d2 + 6d01ad5 commit ae572cb

File tree

187 files changed

+1066
-1143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+1066
-1143
lines changed

.github/workflows/continous_integration.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
. devtools/scripts/initialize_conda.sh
8989
conda activate test
9090
91-
pytest -v --cov=propertyestimator propertyestimator/tests/
91+
pytest -v --cov=evaluator evaluator/tests/
9292
9393
- name: Code coverage
9494
run: |
@@ -118,12 +118,12 @@ jobs:
118118
119119
- name: Run isort
120120
run: |
121-
isort --recursive --check-only propertyestimator
121+
isort --recursive --check-only evaluator
122122
123123
- name: Run black
124124
run: |
125-
black propertyestimator --check
125+
black evaluator --check
126126
127127
- name: Run flake8
128128
run: |
129-
flake8 propertyestimator
129+
flake8 evaluator

.lgtm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ path_classifiers:
99
- versioneer.py # Set Versioneer.py to an external "library" (3rd party code)
1010
- devtools/*
1111
generated:
12-
- propertyestimator/_version.py
12+
- evaluator/_version.py

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
propertyestimator
1+
OpenFF Evaluator
22
==============================
33
[//]: # (Badges)
44

5-
[![Test Status](https://github.com/openforcefield/propertyestimator/workflows/tests/badge.svg)](https://github.com/openforcefield/propertyestimator/actions)
5+
[![Test Status](https://github.com/openforcefield/openff-evaluator/workflows/tests/badge.svg)](https://github.com/openforcefield/openff-evaluator/actions)
66
[![Documentation Status](https://readthedocs.org/projects/property-estimator/badge/?version=latest)](https://property-estimator.readthedocs.io/en/latest/?badge=latest)
7-
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/openforcefield/propertyestimator.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/openforcefield/propertyestimator/context:python)
8-
[![codecov](https://codecov.io/gh/openforcefield/propertyestimator/branch/master/graph/badge.svg)](https://codecov.io/gh/openforcefield/propertyestimator/branch/master)
7+
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/openforcefield/openff-evaluator.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/openforcefield/openff-evaluator/context:python)
8+
[![codecov](https://codecov.io/gh/openforcefield/openff-evaluator/branch/master/graph/badge.svg)](https://codecov.io/gh/openforcefield/openff-evaluator/branch/master)
99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1010

1111
A distributed, automated property estimation toolkit from the Open Force Field Consortium. See the

devtools/conda-recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package:
2-
name: propertyestimator
2+
name: openff-evaluator
33
version: "0.0.0"
44

55
source:
@@ -20,7 +20,7 @@ test:
2020
requires:
2121
- pytest
2222
imports:
23-
- propertyestimator
23+
- evaluator
2424

2525
about:
2626
home: add_url_here

0 commit comments

Comments
 (0)