1
0
Fork 0
mirror of synced 2024-06-28 11:00:35 +12:00

Merge pull request #522 from cdvv7788/fix-wheel

This commit is contained in:
Nick Sweeting 2020-11-02 22:19:41 -05:00 committed by GitHub
commit 4bdda4d753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,6 @@ IS_SHELL = 'shell' in sys.argv[:3] or 'shell_plus' in sys.argv[:3]
### Django Core Settings
################################################################################
DEBUG = True
WSGI_APPLICATION = 'core.wsgi.application'
ROOT_URLCONF = 'core.urls'

View file

@ -3,7 +3,7 @@ __package__ = 'archivebox.extractors'
from pathlib import Path
from subprocess import CompletedProcess
from typing import Optional, Tuple, List
from typing import Optional, List
import json
from ..index.schema import Link, ArchiveResult, ArchiveError

View file

@ -4,7 +4,6 @@ import re
import os
import sys
import time
import platform
import argparse
from math import log
from multiprocessing import Process

View file

@ -44,6 +44,9 @@ setuptools.setup(
url=REPO_URL,
project_urls=PROJECT_URLS,
python_requires=">=3.7",
setup_requires=[
"wheel",
],
install_requires=[
"requests==2.24.0",
"atomicwrites==1.4.0",
@ -67,7 +70,6 @@ setuptools.setup(
extras_require={
'dev': [
"setuptools",
"wheel",
"twine",
"flake8",
"ipdb",