Update Setup and __init__

This commit is contained in:
2022-05-19 17:46:00 +02:00
parent 20db8c5745
commit edc8816041
2 changed files with 7 additions and 2 deletions

View File

@@ -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"),
@@ -46,7 +51,7 @@ setuptools.setup(
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
],
install_requires=["scikit-learn"],
install_requires=get_requirements(),
test_suite="mufs.tests",
zip_safe=False,
)