forked from stravalib/stravalib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes stravalib#6 - Fixing _resolve_url to not assume *nix
- Loading branch information
Showing
5 changed files
with
75 additions
and
72 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
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,7 +11,7 @@ | |
use_setuptools() | ||
from setuptools import setup, find_packages | ||
|
||
version = '0.2.1' | ||
version = '0.2.2' | ||
|
||
news = os.path.join(os.path.dirname(__file__), 'docs', 'news.rst') | ||
news = open(news).read() | ||
|
@@ -25,19 +25,19 @@ | |
warnings.warn('No news for this version found.') | ||
|
||
long_description = """ | ||
stravalib is a Python 2.x and 3.x library that provides a simple API for interacting | ||
stravalib is a Python 2.x and 3.x library that provides a simple API for interacting | ||
with the Strava activity tracking website. | ||
""" | ||
|
||
if found_news: | ||
title = 'Changes in %s' % version | ||
long_description += "\n%s\n%s\n" % (title, '-'*len(title)) | ||
long_description += found_news | ||
long_description += found_news | ||
|
||
setup( | ||
name = "stravalib", | ||
version = version, | ||
author = "Hans Lellelid", | ||
setup( | ||
name = "stravalib", | ||
version = version, | ||
author = "Hans Lellelid", | ||
author_email = "[email protected]", | ||
url = "http://github.com/hozn/stravalib", | ||
license = "Apache", | ||
|
@@ -64,5 +64,5 @@ | |
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
use_2to3=True, | ||
zip_safe=False # Technically it should be fine, but there are issues w/ 2to3 | ||
zip_safe=False # Technically it should be fine, but there are issues w/ 2to3 | ||
) |
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