Skip to content

Replaced distutils with setuptools and unpinned package dependency #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Replaced distutils with setuptools and unpinned package dependency
  • Loading branch information
mandeep committed Feb 20, 2016
commit 73ed1f2d5d0488095ba636d56805ada67d714a23
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from distutils.core import setup

from setuptools import setup
setup(
name = 'indeed',
version = '0.0.4',
description = 'Indeed Job Search Python Api Client',
author = 'Indeed Labs',
author_email = '[email protected]',
packages = ['indeed'],
install_requires=['requests==2.0.0'],
install_requires=['requests>=2.9.1'],
url = "https://github.com/indeedlabs/indeed-python",
)