https://github.com/Theomat/PSEAS
Raw File
Tip revision: 9caaff731eba1e655f640252725acb79beab1ade authored by Theomat on 29 September 2021, 18:14:02 UTC
Added AUTHORS file for software heritage
Tip revision: 9caaff7
setup.py
from setuptools import setup, find_packages


setup(name="pseas",
      version="0.0.1",
      description="Per Set Efficient Algorithm Selection (PSEAS)",
      author="Théo Matricon",
      author_email="theomatricon@gmail.com",
      packages=find_packages(),
      install_requires=[
          "numpy",
          "scipy",
          "pyyaml",
          "liac-arff",
          "pandas",
          "tqdm",
          "matplotlib",
          "seaborn"
      ],
      license="?")
back to top