From ee638c1f72ed1a99fd305aabdd2c5fab2d85c6fb Mon Sep 17 00:00:00 2001 From: veenstrajelmer <60435591+veenstrajelmer@users.noreply.github.com> Date: Tue, 12 Mar 2024 11:02:42 +0100 Subject: [PATCH] removed files (#71) --- .travis.yml | 29 ----------------------------- MANIFEST.in | 3 +-- requirements.txt | 4 ---- requirements_dev.txt | 12 ------------ tox.ini | 28 ---------------------------- 5 files changed, 1 insertion(+), 75 deletions(-) delete mode 100644 .travis.yml delete mode 100644 requirements.txt delete mode 100644 requirements_dev.txt delete mode 100644 tox.ini diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9010c9d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Config file for automatic testing at travis-ci.org - -language: python -python: - - 3.6 - - 3.5 - - 3.4 - - 2.7 - -# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors -install: pip install -U tox-travis - -# Command to run tests, e.g. python setup.py test -script: tox - -# Assuming you have installed the travis-ci CLI tool, after you -# create the Github repo and add it to Travis, run the -# following command to finish PyPI deployment setup: -# $ travis encrypt --add deploy.password -deploy: - provider: pypi - distributions: sdist bdist_wheel - user: SiggyF - password: - secure: PLEASE_REPLACE_ME - on: - tags: true - repo: Deltares/ddlpy - python: 3.6 diff --git a/MANIFEST.in b/MANIFEST.in index 007a8bf..db6b303 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,7 @@ include CONTRIBUTING.rst include HISTORY.rst include LICENSE -include README.rst -include requirements.txt +include README.md include ddlpy/endpoints.json diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index e15570f..0000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -python-dateutil>=2.8 -pandas -tqdm -click diff --git a/requirements_dev.txt b/requirements_dev.txt deleted file mode 100644 index d457612..0000000 --- a/requirements_dev.txt +++ /dev/null @@ -1,12 +0,0 @@ -pip==23.3 -bumpversion==0.5.3 -wheel==0.38.1 -watchdog==0.9.0 -flake8==3.5.0 -tox==3.5.2 -coverage==4.5.1 -Sphinx==1.8.1 -twine==1.12.1 - -pytest==3.8.2 -pytest-runner==4.2 diff --git a/tox.ini b/tox.ini deleted file mode 100644 index ce65641..0000000 --- a/tox.ini +++ /dev/null @@ -1,28 +0,0 @@ -[tox] -envlist = py27, py34, py35, py36, flake8 - -[travis] -python = - 3.6: py36 - 3.5: py35 - 3.4: py34 - 2.7: py27 - -[testenv:flake8] -basepython = python -deps = flake8 -commands = flake8 ddlpy - -[testenv] -setenv = - PYTHONPATH = {toxinidir} -deps = - -r{toxinidir}/requirements_dev.txt -; If you want to make tox run the tests with the same versions, create a -; requirements.txt with the pinned versions and uncomment the following line: -; -r{toxinidir}/requirements.txt -commands = - pip install -U pip - py.test --basetemp={envtmpdir} - -