Skip to content

Commit 3d43db6

Browse files
committed
Re-initialization
1 parent dbecf18 commit 3d43db6

33 files changed

Lines changed: 17 additions & 1623 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ https://pyfairness.readthedocs.io/en/latest/
1010

1111
![CircleCI](https://img.shields.io/circleci/build/github/eustomaqua/PyEnsemble/master)
1212
[![Documentation Status](https://readthedocs.org/projects/pyensemble/badge/?version=latest)](https://pyensemble.readthedocs.io/en/latest/?badge=latest)
13-
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/bf14ce14d2df4412a91e80d94fee6931)](https://app.codacy.com/gh/eustomaqua/PyFairness/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
14-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/bf14ce14d2df4412a91e80d94fee6931)](https://app.codacy.com/gh/eustomaqua/PyFairness/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
13+
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/2337de0ee40847ecbd99aac71d2561e4)](https://app.codacy.com/gh/eustomaqua/PyEnsemble/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
14+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/2337de0ee40847ecbd99aac71d2561e4)](https://app.codacy.com/gh/eustomaqua/PyEnsemble/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
1515

1616

1717
<!--

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
project = 'PyFairness'
1515
copyright = '2025, eustomaqua'
1616
author = 'eustomaqua'
17-
release = '0.1.0'
17+
release = '0.2.1'
1818

1919

2020
# -- General configuration ---------------------------------------------------

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
.. PyEnsemble documentation master file, created by
1+
.. PyFairness documentation master file, created by
22
sphinx-quickstart on Fri Jul 25 00:34:11 2025.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
PyFairness documentation
6+
PyEnsemble documentation
77
========================
88

99
.. Add your content using ``reStructuredText`` syntax. See the
@@ -16,7 +16,7 @@ PyFairness documentation
1616
:caption: Contents:
1717

1818

19-
Welcome to the PyFairness's documentation. This is an open-source library for **fairness** measures as well as **ensemble learning** methods, involving diversity measures and ensemble pruning methods.
19+
Welcome to PyFairness's documentation. This is an open-source library for *fairness* measures as well as *ensemble learning* methods, involving diversity measures and ensemble pruning methods. It was named PyEnsemble before, so these two may be used interchangeably in the following text.
2020

2121

2222
SHORTCUTS

docs/posts/quickstart.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ We may test the code on different environments, and in that case, please choose
3232
$ conda remove -n ensem --all
3333
3434
35-
If you would like to install `PyFairness <https://github.com/eustomaqua/PyFairness>`_, please do the following.
35+
If you would like to install `PyEnsemble <https://github.com/eustomaqua/PyEnsemble>`_, please do the following.
3636

3737
.. code-block:: console
3838
3939
$ # Two ways to install (& uninstall) PyFairness
40-
$ git clone git@github.com:eustomaqua/PyFairness.git
40+
$ git clone git@github.com:eustomaqua/PyEnsemble.git
4141
$
42-
$ pip install -r PyFairness/reqs_py311.txt
43-
$ pip install -e ./PyFairness
42+
$ pip install -r PyEnsemble/reqs_py311.txt
43+
$ pip install -e ./PyEnsemble
4444
$ # pip uninstall pyfair
4545
$
46-
$ mv ./PyFairness/pyfair ./ # cp -r <folder> ./
47-
$ yes | rm -r PyFairness
46+
$ mv ./PyEnsemble/pyfair ./ # cp -r <folder> ./
47+
$ yes | rm -r PyEnsemble
4848
$ # rm -r pyfair
4949
5050

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# For a discussion on single-sourcing the version across setup.py and the
4646
# project code, see
4747
# https://packaging.python.org/en/latest/single_source_version.html
48-
version='0.1.1', # Required
48+
version='0.2.1', # Required
4949

5050
# This is a one-line description or tagline of what your project does. This
5151
# corresponds to the "Summary" metadata field:
@@ -78,7 +78,7 @@
7878
#
7979
# This field corresponds to the "Home-Page" metadata field:
8080
# https://packaging.python.org/specifications/core-metadata/#home-page-optional
81-
url='https://github.com/eustomaqua/PyFairness', # Optional
81+
url='https://github.com/eustomaqua/PyEnsemble', # Optional
8282

8383
# This should be your name or the name of the organization which owns the
8484
# project.
@@ -193,7 +193,7 @@
193193
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files
194194
#
195195
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
196-
data_files=[('my_data', ['pyfair/data/'])], # Optional
196+
data_files=[('my_data', ['data/'])], # Optional
197197

198198
# To provide executable scripts, use entry points in preference to the
199199
# "scripts" keyword. Entry points provide cross-platform support and allow
@@ -218,9 +218,9 @@
218218
# maintainers, and where to support the project financially. The key is
219219
# what's used to render the link text on PyPI.
220220
project_urls={ # Optional
221-
'Bug Reports': 'https://github.com/eustomaqua/PyFairness/issues',
221+
'Bug Reports': 'https://github.com/eustomaqua/PyEnsemble/issues',
222222
# 'Funding': 'https://donate.pypi.org',
223223
# 'Say Thanks!': 'http://saythanks.io/to/example',
224-
'Source': 'https://github.com/eustomaqua/PyFairness/',
224+
'Source': 'https://github.com/eustomaqua/PyEnsemble/',
225225
},
226226
)

tests/.flake8

Lines changed: 0 additions & 6 deletions
This file was deleted.

tests/.travis.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/README.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

tests/__init__.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/ci.yaml

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)