-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48e93e5
commit 9335ea7
Showing
9 changed files
with
9 additions
and
8 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
*__pycache__ | ||
*setup.cfg | ||
*.gitignore | ||
*Scripts | ||
*Lib | ||
*Include | ||
*Include | ||
*example.py | ||
*pyvenv.cfg |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Metadata-Version: 2.1 | ||
Name: pypartpicker | ||
Version: 0.post0 | ||
Version: 0.6 | ||
Summary: A package that scrapes pcpartpicker.com and returns the results as objects. | ||
Home-page: https://github.com/QuaKe8782/pypartpicker | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Download-URL: https://github.com/QuaKe8782/pypartpicker/archive/0.4.tar.gz | ||
Download-URL: https://github.com/QuaKe8782/pypartpicker/archive/0.6.tar.gz | ||
Description: # PyPartPicker | ||
|
||
#### PyPartPicker is a package that allows you to obtain information from PCPartPicker quickly and easily, with data being returned via objects with numerous attributes. | ||
|
@@ -174,7 +174,7 @@ Description: # PyPartPicker | |
- `content` - The text content of the review | ||
Keywords: pcpartpicker,scraper,list,beautifulsoup,pc,parts | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 4 - Beta | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Topic :: Software Development :: Build Tools | ||
Classifier: License :: OSI Approved :: MIT License | ||
|
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 |
---|---|---|
|
@@ -4,19 +4,19 @@ | |
long_description = readme.read() | ||
|
||
setup(name='pypartpicker', | ||
version='0.5', | ||
version='0.6', | ||
description='A package that scrapes pcpartpicker.com and returns the results as objects.', | ||
packages=['pypartpicker'], | ||
url='https://github.com/QuaKe8782/pypartpicker', | ||
keywords = ['pcpartpicker', 'scraper', 'list', 'beautifulsoup', 'pc', 'parts'], | ||
author_email='[email protected]', | ||
install_requires=['bs4', 'requests'], | ||
zip_safe=False, | ||
download_url = "https://github.com/QuaKe8782/pypartpicker/archive/0.5.tar.gz", | ||
download_url = "https://github.com/QuaKe8782/pypartpicker/archive/0.6.tar.gz", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', | ||
|