Commit 76c03b44 authored by Ibrahim's avatar Ibrahim
Browse files

removed setup.py

parent 0680fc88
Loading
Loading
Loading
Loading

setup.py

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
from distutils.core import setup



setup(name='commonml',
      version='0.1.0',
      description='Machine learning functions common across different research projects.',
      author='Ibrahim Ahmed',
      author_email='ibrahim.ahmed@vanderbilt.edu',
      url='https://git.isis.vanderbilt.edu/ahmedi/CommonML',
      packages=['helpers', 'rl', 'tl', 'stats', 'test'],
      install_requires=['numpy', 'torch', 'higher', 'tqdm', 'scikit-learn', 'gym', 'tslearn'],
      classifiers=[
          'Development Status :: 3 - Alpha',
          'Programming Language :: Python :: 3.6',
          'Programming Language :: Python :: 3.7'
      ]
     )