diff --git a/AUTHORS.rst b/AUTHORS.rst index 75e1200d0..cc10cc44f 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -13,4 +13,4 @@ Contributors Refers to GitHub contributors page_. .. _scikit-learn: http://scikit-learn.org -.. _page: https://github.com/fmfn/UnbalancedDataset/graphs/contributors +.. _page: https://github.com/scikit-learn-contrib/imbalanced-learn/graphs/contributors diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 315d73656..05bed2dcf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,16 +2,16 @@ Contributing code ================= -This guide is adapted from (scikit-learn)[https://github.com/viisar/brew/blob/master/CONTRIBUTING.rst] +This guide is adapted from (scikit-learn)[https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md] How to contribute ----------------- The preferred way to contribute to imbalanced-learn is to fork the -[main repository](https://github.com/fmfn/UnbalancedDataset) on +[main repository](https://github.com/scikit-learn-contrib/imbalanced-learn) on GitHub: -1. Fork the [project repository](https://github.com/fmfn/UnbalancedDataset): +1. Fork the [project repository](https://github.com/scikit-learn-contrib/imbalanced-learn): click on the 'Fork' button near the top of the page. This creates a copy of the code under your account on the GitHub server. @@ -126,8 +126,8 @@ It is recommended to check that your issue complies with the following rules before submitting: - Verify that your issue is not being currently addressed by other - [issues](https://github.com/fmfn/UnbalancedDataset/issues?q=) - or [pull requests](https://github.com/fmfn/UnbalancedDataset/pulls?q=). + [issues](https://github.com/scikit-learn-contrib/imbalanced-learn/issues?q=) + or [pull requests](https://github.com/scikit-learn-contrib/imbalanced-learn/pulls?q=). - Please ensure all code snippets and error messages are formatted in appropriate code blocks. diff --git a/README.rst b/README.rst index 05ba9a0d3..56978c95b 100644 --- a/README.rst +++ b/README.rst @@ -41,7 +41,7 @@ Documentation Installation documentation, API documentation, and examples can be found on the documentation_. -.. _documentation: http://glemaitre.github.io/imbalanced-learn +.. _documentation: http://contrib.scikit-learn.org/imbalanced-learn/ Installation ============ @@ -69,7 +69,7 @@ The package is release also in Anaconda Cloud platform:: If you prefer, you can clone it and run the setup.py file. Use the following commands to get a copy from Github and install all dependencies:: - git clone https://github.com/fmfn/imbalanced-learn.git + git clone https://github.com/scikit-learn-contrib/imbalanced-learn.git cd imbalanced-learn python setup.py install @@ -124,7 +124,7 @@ Below is a list of the methods currently implemented in this module. The different algorithms are presented in the following notebook_. -.. _notebook: https://github.com/fmfn/UnbalancedDataset/blob/master/examples/plot_unbalanced_dataset.ipynb +.. _notebook: https://github.com/scikit-learn-contrib/imbalanced-learn/blob/master/examples/plot_unbalanced_dataset.ipynb This is a work in progress. Any comments, suggestions or corrections are welcome. diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 4cf25a371..650c7d338 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -4,7 +4,7 @@ package: source: git_rev: 0.1.1 - git_url: https://github.com/fmfn/UnbalancedDataset.git + git_url: https://github.com/scikit-learn-contrib/imbalanced-learn.git requirements: build: @@ -27,7 +27,7 @@ test: - imblearn about: - home: https://github.com/fmfn/UnbalancedDataset + home: https://github.com/scikit-learn-contrib/imbalanced-learn license: MIT license_file: LICENSE diff --git a/doc/install.rst b/doc/install.rst index 6b9b8c25d..f9e30bcd8 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -16,8 +16,8 @@ The package is release also in Anaconda Cloud platform:: If you prefer, you can clone it and run the setup.py file. Use the following commands to get a copy from Github and install all dependencies:: - git clone https://github.com/fmfn/UnbalancedDataset.git - cd UnbalancedDataset + git clone https://github.com/scikit-learn-contrib/imbalanced-learn.git + cd imbalanced-learn python setup.py install Test and coverage @@ -36,4 +36,4 @@ Contribute You can contribute to this code through Pull Request on GitHub_. Please, make sure that your code is coming with unit tests to ensure full coverage and continuous integration in the API. -.. _GitHub: https://github.com/fmfn/UnbalancedDataset.git +.. _GitHub: https://github.com/scikit-learn-contrib/imbalanced-learn/pulls diff --git a/setup.py b/setup.py index 3bc7dbfcb..9aafdef89 100644 --- a/setup.py +++ b/setup.py @@ -40,9 +40,9 @@ def is_installing(): LONG_DESCRIPTION = f.read() MAINTAINER = 'G. Lemaitre, F. Nogueira, D. Oliveira, C. Aridas' MAINTAINER_EMAIL = 'g.lemaitre58@gmail.com, fmfnogueira@gmail.com, dvro@cin.ufpe.br, char@upatras.gr' -URL = 'https://github.com/fmfn/UnbalancedDataset' +URL = 'https://github.com/scikit-learn-contrib/imbalanced-learn' LICENSE = 'new BSD' -DOWNLOAD_URL = 'https://github.com/fmfn/UnbalancedDataset' +DOWNLOAD_URL = 'https://github.com/scikit-learn-contrib/imbalanced-learn' VERSION = _VERSION_GLOBALS['__version__']