diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index f631c77f7a..0000000000 --- a/.coveragerc +++ /dev/null @@ -1,2 +0,0 @@ -[run] -omit = browsertime/__init__.py,browsertime/test* diff --git a/Makefile b/Makefile deleted file mode 100644 index 5e242cbfd0..0000000000 --- a/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -HERE = $(shell pwd) -BIN = $(HERE)/bin -PYTHON = $(BIN)/python -INSTALL = $(BIN)/pip install --no-deps -BUILD_DIRS = bin build include lib lib64 man share -VIRTUALENV = virtualenv - -.PHONY: all test build - -all: build - -$(PYTHON): - $(VIRTUALENV) $(VTENV_OPTS) . - -build: $(PYTHON) - $(BIN)/pip install tox - -clean: - rm -rf $(BUILD_DIRS) - -test: build - $(BIN)/tox diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 7c0b201f29..0000000000 --- a/pyproject.toml +++ /dev/null @@ -1,9 +0,0 @@ -[project] -name = "browsertime" - -[build-system] -requires = [ - "setuptools >= 35.0.2", - "setuptools_scm >= 2.0.0, <3" -] -build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py deleted file mode 100644 index 9923bd13aa..0000000000 --- a/setup.py +++ /dev/null @@ -1,23 +0,0 @@ -import sys -from setuptools import setup, find_packages - -install_requires = [''] -classifiers = ["Programming Language :: Python", - "Development Status :: 5 - Production/Stable", - "Programming Language :: Python :: 3"] - - -setup(name='browsertime', - version="0.1", - url='https://github.com/sitespeedio/browsertime', - packages=find_packages(), - description=("Your browser, your page, your scripts!"), - author="Tobias Lidskog", - include_package_data=True, - zip_safe=False, - classifiers=classifiers, - install_requires=install_requires, - entry_points=""" - [console_scripts] - visualmetrics.py = browsertime.visualmetrics:main - """) diff --git a/tox.ini b/tox.ini deleted file mode 100644 index b0206f0177..0000000000 --- a/tox.ini +++ /dev/null @@ -1,29 +0,0 @@ -[tox] -downloadcache = {toxworkdir}/cache/ -envlist = py36,py27,lint -isolated_build = True - -[testenv] -passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH -deps = pytest - pyssim - pytest-cov -commands = - pytest --cov-report= --cov-config .coveragerc --cov browsertime browsertime/test_visualmetrics.py - - coverage combine - coverage report -m - -[testenv:py27] -passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH -deps = pytest - pyssim -commands = - pytest browsertime/test_visualmetrics.py - -[testenv:lint] -passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH -deps = black - flake8 -commands = - black browsertime - flake8 --ignore=E501,W503 browsertime