Change module name to MUFS

This commit is contained in:
2021-08-02 17:44:51 +02:00
parent bd709131e4
commit d8299766c9
14 changed files with 77 additions and 76 deletions

View File

@@ -8,7 +8,7 @@ def readme():
def get_data(field: str):
item = ""
with open("mfs/__init__.py") as f:
with open("mufs/__init__.py") as f:
for line in f.readlines():
if line.startswith(f"__{field}__"):
delim = '"' if '"' in line else "'"
@@ -20,16 +20,16 @@ def get_data(field: str):
setuptools.setup(
name="MFS",
name="MUFS",
version=get_data("version"),
license=get_data("license"),
description="Multi Feature Selection",
long_description=readme(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
url="https://github.com/Doctorado-ML/mfs#mfs",
url="https://github.com/Doctorado-ML/mufs#mufs",
project_urls={
"Code": "https://github.com/Doctorado-ML/mfs",
"Code": "https://github.com/Doctorado-ML/mufs",
},
author=get_data("author"),
author_email=get_data("author_email"),
@@ -43,6 +43,6 @@ setuptools.setup(
"Intended Audience :: Science/Research",
],
install_requires=["scikit-learn"],
test_suite="mfs.tests",
test_suite="mufs.tests",
zip_safe=False,
)