-
Notifications
You must be signed in to change notification settings - Fork 51
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
f0a2039
commit 538d930
Showing
8 changed files
with
164 additions
and
163 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,9 @@ | |
print("Removing stale \"dist\" directory before packaging...") | ||
shutil.rmtree("dist") | ||
|
||
if os.path.exists("yffpy.egg-info"): | ||
print("Removing stale \"yffpy.egg-info\" directory before packaging...") | ||
shutil.rmtree("yffpy.egg-info") | ||
if os.path.exists("yfpy.egg-info"): | ||
print("Removing stale \"yfpy.egg-info\" directory before packaging...") | ||
shutil.rmtree("yfpy.egg-info") | ||
|
||
with open("README.md", "r") as docs: | ||
long_description = docs.read() | ||
|
@@ -22,15 +22,15 @@ | |
required = reqs.read().splitlines() | ||
|
||
setuptools.setup( | ||
name="yffpy", | ||
version="2.10.0", | ||
name="yfpy", | ||
version="3.0.0", | ||
author="Wren J. R.", | ||
author_email="[email protected]", | ||
description="Python API wrapper for the Yahoo Fantasy Football public API.", | ||
description="Python API wrapper for the Yahoo Fantasy Sports public API.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
keywords="yahoo fantasy football api wrapper sports", | ||
url="https://github.com/uberfastman/yffpy", | ||
keywords="yahoo fantasy sports api wrapper nfl football nhl hockey mlb baseball nba basketball", | ||
url="https://github.com/uberfastman/yfpy", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
|
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,9 +1,9 @@ | ||
__author__ = "Wren J. R. (uberfastman)" | ||
__email__ = "[email protected]" | ||
|
||
from yffpy.data import Data | ||
from yffpy.models import User, Game, League, Team, Standings, Manager, RosterAdds, TeamLogo, TeamPoints, \ | ||
from yfpy.data import Data | ||
from yfpy.models import User, Game, League, Team, Standings, Manager, RosterAdds, TeamLogo, TeamPoints, \ | ||
TeamStandings, OutcomeTotals, Streak, Settings, RosterPosition, StatCategories, StatModifiers, Stat, \ | ||
StatPositionType, Bonus, Matchup, MatchupGrade, Player, ByeWeeks, Headshot, Name, PlayerPoints, PlayerStats, \ | ||
SelectedPosition | ||
from yffpy.query import YahooFantasyFootballQuery | ||
from yfpy.query import YahooFantasySportsQuery |
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
Oops, something went wrong.