Skip to content

Commit

Permalink
Add 3.10 to classifiers, bump version and remove old email
Browse files Browse the repository at this point in the history
  • Loading branch information
thefakequake committed Sep 2, 2022
1 parent 5b8b191 commit ea3925d
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()

setup(name='pypartpicker',
version='1.9.1',
description='A package that scrapes pcpartpicker.com and returns the results as objects.',
packages=['pypartpicker'],
url='https://github.com/thefakequake/pypartpicker',
keywords = ['pcpartpicker', 'scraper', 'list', 'beautifulsoup', 'pc', 'parts'],
author_email='[email protected]',
install_requires=['bs4', 'requests'],
zip_safe=False,
download_url = "https://github.com/thefakequake/pypartpicker/archive/refs/tags/v1.9.1.tar.gz",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
])


setup(
name="pypartpicker",
version="1.9.2",
description="A package that scrapes pcpartpicker.com and returns the results as objects.",
packages=["pypartpicker"],
url="https://github.com/thefakequake/pypartpicker",
keywords=["pcpartpicker", "scraper", "list", "beautifulsoup", "pc", "parts"],
install_requires=["bs4", "requests"],
zip_safe=False,
download_url="https://github.com/thefakequake/pypartpicker/archive/refs/tags/v1.9.2.tar.gz",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)

0 comments on commit ea3925d

Please sign in to comment.