Skip to content

Sloution for install via python setup.py install #140

@dragonked2

Description

@dragonked2

you need to replace the setup.py file content with this content in order to solve the utf-8 error

from setuptools import setup, find_packages

Safe read with UTF-8 encoding

with open('README.md', 'r', encoding='utf-8') as f:
long_desc = f.read()

setup(
name='paramspider',
version='0.1.0',
author='Devansh Batham',
author_email='[email protected]',
description='Mining parameters from dark corners of Web Archives',
packages=find_packages(),
install_requires=[
'requests',
'colorama'
],
entry_points={
'console_scripts': [
'paramspider = paramspider.main:main'
]
},
license='MIT',
long_description=long_desc,
long_description_content_type='text/markdown'
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions