ml4tp / gamepad

A Learning Environment for Theorem Proving
Apache License 2.0
71 stars 15 forks source link

including a setup.py for depedencies #9

Open brando90 opened 5 years ago

brando90 commented 5 years ago

it would be nice to include a dependencies file for depedencies, e.g.

from setuptools import setup

setup( name='my_tf_proj', #project name version='0.1.0', description='my research library for deep learning',

url

author='Me',
author_email='my_email@mituiuc.edu',
license='MIT',
packages=['my_tf_pkg','cifar10','sgd_lib'],
#install_requires=['numpy','keras','namespaces','pdb','scikit-learn','scipy','virtualenv']
#install_requires=['numpy','keras','namespaces','pdb']
install_requires=['numpy','namespaces','pdb','scikit-learn','scipy','maps','pandas','matplotlib']

)