Skip to content

Commit

Permalink
Update Setup and __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
rmontanana committed May 19, 2022
1 parent 20db8c5 commit edc8816
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mufs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Ricardo Montañana Gómez"
__author_email__ = "Ricardo.Montanana@alu.uclm.es"
__copyright__ = "Copyright 2021, Ricardo Montañana Gómez"
__copyright__ = "Copyright 2021-2022, Ricardo Montañana Gómez"
__license__ = "MIT License"

__all__ = ["MUFS"]
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ def get_data(field):
return item


def get_requirements():
with open("requirements/production.txt") as f:
return f.read().splitlines()


setuptools.setup(
name="MUFS",
version=get_data("version"),
Expand All @@ -46,7 +51,7 @@ def get_data(field):
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
],
install_requires=["scikit-learn"],
install_requires=get_requirements(),
test_suite="mufs.tests",
zip_safe=False,
)

0 comments on commit edc8816

Please sign in to comment.