From 3434914241b27e40d4b8ceed4b8c1cb10baeb1fd Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Fri, 18 May 2018 07:36:30 -0400 Subject: [PATCH] Switch from using straight pip and virtualenv to pipenv Need to write an INSTALL.md for this. --- Pipfile | 30 ++++++++++++++++++++++++++++++ requirements.txt | 19 ------------------- 2 files changed, 30 insertions(+), 19 deletions(-) create mode 100644 Pipfile delete mode 100644 requirements.txt diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..3288bda --- /dev/null +++ b/Pipfile @@ -0,0 +1,30 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +"beautifulsoup4" = "==4.6.0" +bleach = "==2.1.3" +certifi = "==2017.11.5" +chardet = "==3.0.4" +decorator = "==4.1.2" +django-markdownify = "==0.8.0" +django-widget-tweaks = "==1.4.2" +"html5lib" = "==1.0.1" +idna = "==2.6" +markdown = "==2.6.11" +"mastodon.py" = "==1.2.1" +python-dateutil = "==2.6.1" +pytz = "==2017.3" +requests = "==2.18.4" +six = "==1.11.0" +"urllib3" = "==1.22" +webencodings = "==0.5.1" +Django = "==2.0.4" +django-html_sanitizer = "==0.1.5" + +[dev-packages] + +[requires] +python_version = "3.6" diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index feeeeac..0000000 --- a/requirements.txt +++ /dev/null @@ -1,19 +0,0 @@ -beautifulsoup4==4.6.0 -bleach==2.1.3 -certifi==2017.11.5 -chardet==3.0.4 -decorator==4.1.2 -Django==2.0.4 -django-html-sanitizer==0.1.5 -django-markdownify==0.8.0 -django-widget-tweaks==1.4.2 -html5lib==1.0.1 -idna==2.6 -Markdown==2.6.11 -Mastodon.py==1.2.1 -python-dateutil==2.6.1 -pytz==2017.3 -requests==2.18.4 -six==1.11.0 -urllib3==1.22 -webencodings==0.5.1