Skip to content

Commit

Permalink
unpin requests(-oauthlib)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chive committed Nov 10, 2015
1 parent 1f0f551 commit 3eac089
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include LICENSE
include requirements.txt
recursive-include pyrate/services *
recursive-include pyrate/scripts *
recursive-include pyrate/tests *
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
from setuptools import setup, find_packages
from pyrate import __version__

REQUIREMENTS = (
'requests',
'requests-oauthlib',
)

CLASSIFIERS = [
CLASSIFIERS = (
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
Expand All @@ -18,7 +22,7 @@
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)

setup(
name='pyrate',
Expand All @@ -35,12 +39,10 @@
include_package_data=True,
zip_safe=False,
test_suite='pyrate.tests',
install_requires=[
open("requirements.txt").readlines(),
],
tests_require=[
'httmock==1.0.7',
],
install_requires=REQUIREMENTS,
tests_require=(
'httmock',
),
entry_points={
'console_scripts': [
'pyratetools = pyrate.scripts.cliutils:main',
Expand Down

0 comments on commit 3eac089

Please sign in to comment.