Skip to content

Commit b78bfbe

Browse files
victorprincipeagoscinski
authored andcommitted
Added deprecation warning to README and init file. Also added Victor Principe as author.
1 parent cb1c07c commit b78bfbe

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@
66
A collection of scikit-learn compatible utilities that implement methods
77
developed in the COSMO laboratory
88

9+
## Deprecation Warning
10+
__IMPORTANT:__ This package has been renamed to scikit-matter (skmatter). This package will no longer be maintained and updated.
11+
12+
Please install the new package, skmatter, using:
13+
14+
```bash
15+
pip install skmatter
16+
```
17+
918
## Installation
1019

1120
```bash

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ long_description = file: README.md
44
long_description_content_type = text/markdown
55

66
license_files = LICENSE
7-
author = Rose K. Cersonsky, Guillaume Fraux, Sergei Kliavinek, Alexander Goscinski, Benjamin A. Helfrecht, Michele Ceriotti
7+
author = Rose K. Cersonsky, Guillaume Fraux, Sergei Kliavinek, Alexander Goscinski, Benjamin A. Helfrecht, Victor P. Principe, Michele Ceriotti
88
author_email = [email protected]
99
description = A collection of scikit-learn compatible utilities that implement methods developed in the COSMO laboratory
1010
; keywords =

skcosmo/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
__version__ = "0.1.2"
2+
3+
import logging
4+
5+
LOGGER = logging.getLogger(__name__)
6+
7+
LOGGER.warn(
8+
"DeprecationWarning: This package has been renamed to scikit-matter (skmatter). This package will no longer be maintained and updated. Please install the new package using `pip install skmatter`"
9+
)

0 commit comments

Comments
 (0)