Skip to content
Snippets Groups Projects
Commit e05e9081 authored by Ben Westover's avatar Ben Westover
Browse files

New upstream version 1.9.2

parent b4023128
No related branches found
No related tags found
No related merge requests found
...@@ -3,5 +3,8 @@ ...@@ -3,5 +3,8 @@
*Scripts *Scripts
*Lib *Lib
*Include *Include
*example.py *pyvenv.cfg
*pyvenv.cfg *.egg-info
\ No newline at end of file venv
.venv
dist
\ No newline at end of file
...@@ -197,7 +197,7 @@ class Scraper: ...@@ -197,7 +197,7 @@ class Scraper:
compatibility=compatibilitynotes, compatibility=compatibilitynotes,
) )
def part_search(self, search_term, **kwargs) -> Part: def part_search(self, search_term, **kwargs) -> list[Part]:
search_term = search_term.replace(" ", "+") search_term = search_term.replace(" ", "+")
limit = kwargs.get("limit", 20) limit = kwargs.get("limit", 20)
......
...@@ -3,26 +3,26 @@ from setuptools import setup ...@@ -3,26 +3,26 @@ from setuptools import setup
with open("README.md", "r", encoding="utf-8") as readme: with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read() long_description = readme.read()
setup(name='pypartpicker', setup(
version='1.9.1', name="pypartpicker",
description='A package that scrapes pcpartpicker.com and returns the results as objects.', version="1.9.2",
packages=['pypartpicker'], description="A package that scrapes pcpartpicker.com and returns the results as objects.",
url='https://github.com/thefakequake/pypartpicker', packages=["pypartpicker"],
keywords = ['pcpartpicker', 'scraper', 'list', 'beautifulsoup', 'pc', 'parts'], url="https://github.com/thefakequake/pypartpicker",
author_email='mastermind4560@gmail.com', keywords=["pcpartpicker", "scraper", "list", "beautifulsoup", "pc", "parts"],
install_requires=['bs4', 'requests'], install_requires=["bs4", "requests"],
zip_safe=False, zip_safe=False,
download_url = "https://github.com/thefakequake/pypartpicker/archive/1.9.1.tar.gz", download_url="https://github.com/thefakequake/pypartpicker/archive/refs/tags/v1.9.2.tar.gz",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', "Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers', "Intended Audience :: Developers",
'Topic :: Software Development :: Build Tools', "Topic :: Software Development :: Build Tools",
'License :: OSI Approved :: MIT License', "License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.7', "Programming Language :: Python :: 3.7",
'Programming Language :: Python :: 3.8', "Programming Language :: Python :: 3.8",
'Programming Language :: Python :: 3.9', "Programming Language :: Python :: 3.9",
]) "Programming Language :: Python :: 3.10",
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment