1
0
Fork 0
mirror of synced 2024-07-01 04:20:55 +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 ### Django Core Settings
################################################################################ ################################################################################
DEBUG = True
WSGI_APPLICATION = 'core.wsgi.application' WSGI_APPLICATION = 'core.wsgi.application'
ROOT_URLCONF = 'core.urls' ROOT_URLCONF = 'core.urls'

View file

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

View file

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

View file

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