From 6fc8899c024e8170bad30c721bfdb49f73d6c534 Mon Sep 17 00:00:00 2001 From: Matt Wang Date: Mon, 8 Apr 2024 23:11:11 +0800 Subject: [PATCH] chore: rm unused requirement files --- requirements.txt | 1 - requirements/base.txt | 91 ------------------------------------- requirements/dev.txt | 53 --------------------- requirements/production.txt | 9 ---- 4 files changed, 154 deletions(-) delete mode 100644 requirements.txt delete mode 100644 requirements/base.txt delete mode 100644 requirements/dev.txt delete mode 100644 requirements/production.txt diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 9e838cee4..000000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ --r requirements/local.txt diff --git a/requirements/base.txt b/requirements/base.txt deleted file mode 100644 index 14936418d..000000000 --- a/requirements/base.txt +++ /dev/null @@ -1,91 +0,0 @@ -# Django -# https://www.djangoproject.com/ -Django==3.1.7 - -# A simple, easy access key-value registry for Django -# https://github.com/yychen/dj-registry -dj-registry==0.2 - -# Compresses linked and inline JavaScript or CSS into a single cached file. -# https://django-compressor.readthedocs.io/en/latest/ -django-compressor==2.4 - -# Set of add-ons for django-compressor that simply enables SCSS and ES6. -# https://github.com/kottenator/django-compressor-toolkit -django-compressor-toolkit==0.6.0 - -# A Django App that adds Cross-Origin Resource Sharing (CORS) headers to responses. -# This allows in-browser requests to your Django application from other origins. -django-cors-headers==3.6.0 - -# The best way to have DRY Django forms. -# https://django-crispy-forms.readthedocs.io/en/latest/ -django-crispy-forms==1.8.1 - -# Django-environ allows you to utilize 12factor inspired environment variables -# to configure your Django application. -# https://django-environ.readthedocs.io/en/latest/ -django-environ==0.11.2 - -# Django application and library for importing and exporting data with -# included admin integration. -# https://django-import-export.readthedocs.io -django-import-export==2.0.1 - -# A collection of custom extensions for the Django Framework -# https://django-extensions.readthedocs.io/en/latest/ -django-extensions==2.2.6 - -# Translates Django models using a registration approach. -# https://github.com/deschler/django-modeltranslation -django-modeltranslation==0.16.2 - -# Faker is a Python package that generates fake data for you. -# https://faker.readthedocs.io/en/master/ -# -# Note(yychen): I cannot find where this package is used. -# It was originally called "fake-factory", and the name has changed -# to "Faker" -# -# fake-factory==0.5.6 - -# Better python shell. -# http://ipython.org/ -ipython==7.16.3 - -# The most feature-rich and easy-to-use library for processing XML and HTML in -# the Python language. -# https://lxml.de/ -lxml==4.6.3 - -# Python Imaging Library. -# https://python-pillow.org/ -Pillow==7.1.0 - -# World Timezone Definitions for Python. -# https://pythonhosted.org/pytz/ -pytz==2019.3 - -# Thumbnails for Django. -# https://sorl-thumbnail.readthedocs.io -sorl-thumbnail==12.6.2 - -# Python Sorted Container Types: SortedList, SortedDict, and SortedSet. -# http://www.grantjenks.com/docs/sortedcontainers/ -sortedcontainers==2.1.0 - -# Tabulate, an utility for pretty-print tabular data -# https://bitbucket.org/astanin/python-tabulate -tabulate==0.9.0 - -# HTTP library -# https://github.com/psf/requests -requests==2.31.0 - -# For upload to Google cloud storage -google-cloud-storage==1.36.1 -django-storages==1.11.1 - -# Django REST framework: a powerful and flexible toolkit for building Web APIs. -# https://www.django-rest-framework.org/ -djangorestframework==3.12.2 diff --git a/requirements/dev.txt b/requirements/dev.txt deleted file mode 100644 index 79b8e4173..000000000 --- a/requirements/dev.txt +++ /dev/null @@ -1,53 +0,0 @@ --r base.txt - -# A configurable set of panels that display various debug information about -# the current request/response. -# https://django-debug-toolbar.readthedocs.io/en/latest/ -django-debug-toolbar==3.2.3 - -# The Python WSGI Utility Library -# https://palletsprojects.com/p/werkzeug/ -Werkzeug==0.16.1 - -# Your Tool For Style Guide Enforcement. -# https://flake8.readthedocs.io/en/latest/ -flake8==3.7.9 - -# A mature full-featured Python testing tool. -# https://docs.pytest.org/en/latest/ -pytest==6.2.5 - -# A plugin for py.test that provides a set of useful tools for testing Django -# applications and projects. -# https://pytest-django.readthedocs.io/ -pytest-django==3.8.0 - -# Code coverage measurement for Python -# https://coverage.readthedocs.io/en/coverage-5.0.3/ -coverage==5.0.3 - -# Pytest plugin for measuring coverage. -# https://pypi.python.org/pypi/pytest-cov -pytest-cov==2.8.1 - -# Thin-wrapper around the mock package for easier use with py.test -# https://github.com/pytest-dev/pytest-mock/ -pytest-mock==2.0.0 - -# xdist: pytest distributed testing plugin -# Use this plugin to speed up the test speed -# http://pytest.org/latest/xdist.html -# -# Note(keitheis): After version by version test, 1.13.1 is currently the last -# usable version for pycontw2016. -# -# Note(yychen): Since we have upgraded, I think the latest should work -# -pytest-xdist==1.31.0 - -# Parses CSS3 Selectors and translate them to XPath 1.0 expressions. -# https://cssselect.readthedocs.io/en/latest/ -cssselect==1.1.0 - -# PostgreSQL database adapter for the Python -psycopg2-binary==2.8.5 diff --git a/requirements/production.txt b/requirements/production.txt deleted file mode 100644 index 40761321b..000000000 --- a/requirements/production.txt +++ /dev/null @@ -1,9 +0,0 @@ --r base.txt -# Psycopg is the most popular PostgreSQL database adapter for the Python -# programming language. -# https://www.psycopg.org/ -psycopg2==2.8.4 - -# uWSGI aims at developing a full stack for building hosting services -# https://uwsgi-docs.readthedocs.io/ -uWSGI==2.0.24