diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c623185..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -# from https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html -language: python -python: - # We don't actually use the Travis Python, but this keeps it organized. - - "3.6" -install: - - sudo apt-get update - - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; - - bash miniconda.sh -b -p $HOME/miniconda - - export PATH="$HOME/miniconda/bin:$PATH" - - hash -r - - conda config --set always_yes yes --set changeps1 no - - conda update -q conda - # Useful for debugging any issues with conda - - conda info -a - - - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy matplotlib numba pytest pip - - source activate test-environment - - conda install -qy pytorch torchvision -c pytorch - - pip install . - - pip install -r requirements.txt - -script: - pytest tests diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 7bc3a3f..0000000 --- a/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ --e git+https://github.com/lanpa/tensorboard-pytorch#egg=TensorboardPytorch --e git+https://github.com/olivierverdier/ddmatch#egg=ddmatch diff --git a/setup.py b/setup.py deleted file mode 100644 index f89ca3e..0000000 --- a/setup.py +++ /dev/null @@ -1,12 +0,0 @@ -from distutils.core import setup - -setup(name='diffeopt', - version='0.1', - packages=['diffeopt', - 'diffeopt.group', - 'diffeopt.group.ddmatch', - 'diffeopt.group.ddmatch.action', - 'diffeopt.cometric', - 'diffeopt.distance', - ], - )