-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 3.10 to classifiers, bump version and remove old email
- Loading branch information
1 parent
5b8b191
commit ea3925d
Showing
1 changed file
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
], | ||
) |