-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename bin script * Install bin script from pypi * Update README with example and contributors * Small improvement * Put more emphasis on the CLI usage * Bump version to 0.5.0
- Loading branch information
Maurizio Branca
authored
Dec 30, 2020
1 parent
3a0b3d3
commit dc88ac9
Showing
4 changed files
with
45 additions
and
11 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
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
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,4 +1,4 @@ | ||
#! env python | ||
#!/usr/bin/env python | ||
import click | ||
|
||
from refurbished import Store | ||
|
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 |
---|---|---|
|
@@ -5,14 +5,21 @@ | |
long_description = f.read() | ||
|
||
NAME = "refurbished" | ||
REQUIRES = ["beautifulsoup4 >= 4.9.3", "requests >= 2.25.1", "price-parser == 0.3.4"] | ||
REQUIRES = [ | ||
"beautifulsoup4 >= 4.9.3", | ||
"requests >= 2.25.1", | ||
"price-parser == 0.3.4", | ||
"click == 7.1.2" | ||
] | ||
|
||
setup( | ||
name=NAME, | ||
version="0.2.0", | ||
description="library to search refurbished products on the Apple Store", | ||
version="0.5.0", | ||
description="Library to search refurbished products on the Apple Store", | ||
author="Maurizio Branca", | ||
author_email="[email protected]", | ||
url="https://github.com/zmoog/refurbished", | ||
scripts=['cli/rfrb'], | ||
keywords=[], | ||
install_requires=REQUIRES, | ||
packages=find_packages(exclude=["test", "tests"]), | ||
|