Skip to content

Commit

Permalink
Add requests to setup.py and requirements.txt.
Browse files Browse the repository at this point in the history
  • Loading branch information
jianli committed Jan 9, 2013
1 parent ceeac25 commit 574b65b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ lxml==3.0.1
pyquery==1.2.2
wsgiref==0.1.2
argparse
requests
43 changes: 23 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import howdoi
import os


def read(*names):
values = dict()
extensions = ['.txt', '.rst']
Expand All @@ -27,33 +28,35 @@ def read(*names):
""" % read('README', 'CHANGES')

setup(name='howdoi',
version=howdoi.__version__,
description='A code search tool',
long_description=long_description,
classifiers=[
setup(
name='howdoi',
version=howdoi.__version__,
description='A code search tool',
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Documentation",
],
keywords='howdoi help console',
author='Benjamin Gleitzman',
author_email='[email protected]',
maintainer='Benjamin Gleitzman',
maintainer_email='[email protected]',
url='https://github.com/gleitz/howdoi',
license='MIT',
packages=find_packages(),
entry_points={
],
keywords='howdoi help console',
author='Benjamin Gleitzman',
author_email='[email protected]',
maintainer='Benjamin Gleitzman',
maintainer_email='[email protected]',
url='https://github.com/gleitz/howdoi',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'howdoi = howdoi.howdoi:command_line_runner',
]
},
install_requires=[
]
},
install_requires=[
'pyquery',
'argparse',
],
)
'requests'
],
)

0 comments on commit 574b65b

Please sign in to comment.