This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect callback url generation
- Loading branch information
richtier
committed
Aug 16, 2018
1 parent
dec6f4b
commit 4d4b845
Showing
10 changed files
with
22 additions
and
31 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-r requirements.txt | ||
-e . | ||
flake8==3.4.0 | ||
freezegun==0.3.9 | ||
pytest-cov==2.5.1 | ||
|
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
#!/bin/bash | ||
rm -rf build | ||
rm -rf dist | ||
pandoc --from=markdown --to=rst --output=README.rst README.md | ||
pandoc --from=markdown --to=rst --output=docs/README.rst README.md | ||
python setup.py bdist_wheel | ||
twine upload -r pypitest dist/* |
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,2 +1,2 @@ | ||
[metadata] | ||
description-file = README.md | ||
description-file = docs/README.rst |
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,29 +1,22 @@ | ||
from setuptools import setup, find_packages | ||
|
||
import pip.download | ||
from pip.req import parse_requirements | ||
|
||
|
||
def get_requirements(): | ||
requirements = parse_requirements( | ||
'requirements.txt', | ||
session=pip.download.PipSession() | ||
) | ||
return [str(r.req) for r in list(requirements)] | ||
|
||
|
||
setup( | ||
name='avs_client', | ||
version='0.7.0', | ||
version='0.7.1', | ||
packages=find_packages(exclude=["tests.*", "tests"]), | ||
url='https://github.com/richtier/alexa-voice-service-client', | ||
license='MIT', | ||
author='Richard Tier', | ||
author_email='[email protected]', | ||
description='Python Client for Alexa Voice Service (AVS)', | ||
long_description=open('README.rst').read(), | ||
long_description=open('docs/README.rst').read(), | ||
include_package_data=True, | ||
install_requires=get_requirements(), | ||
install_requires=[ | ||
'hyper>=0.7.0<1.0.0', | ||
'requests-toolbelt>=0.8.0<1.0.0', | ||
'requests>=2.19.1<3.0.0', | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
|
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