Skip to content

Commit 6b7d744

Browse files
authored
Merge pull request #46 from calpolyccg/fix-build
Fix the package build
2 parents 3e6cdb8 + 4981527 commit 6b7d744

7 files changed

+1088
-470
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mdsapt/_version.py export-subst

build.sh

-3
This file was deleted.

environment.yml

+8-11
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,20 @@
33
name: mdsapt
44
channels:
55
- conda-forge
6-
- conda-forge/label/libint_dev # needed for psi4 1.8.1
76
- defaults
87
dependencies:
98
# This must be specified FIRST to avoid packaging errors.
10-
- psi4=1.8.1=*_2 # pydantic update, for more info see https://github.com/psi4/psi4/issues/2991
11-
12-
- mdanalysis
13-
- click
9+
- python >=3.8
10+
- psi4 =>1.9.1
11+
- mdanalysis >=2.7.0
12+
- rdkit >=2023.09.5
13+
- openmm >=8.1.1
14+
- pdbfixer >=1.9
1415
- numpy
15-
- openmm
16+
- click
1617
- pandas
17-
- pdbfixer
18-
- pytest
19-
- pydantic
20-
- pytest-cov
18+
- pyarrow # needed for pandas
2119
- pyyaml
22-
- rdkit
2320

2421
# Optional deps
2522
- nglview

mdsapt/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ def log_banner() -> None:
3333

3434
logger = create_logger()
3535
log_banner()
36+
37+
from . import _version
38+
__version__ = _version.get_versions()['version']

0 commit comments

Comments
 (0)