Skip to content

Commit

Permalink
Don't depend on pip internals for compatibility with pip 10.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Apr 14, 2018
1 parent eee0eeb commit aaf587b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
from setuptools import setup
from pip.download import PipSession
from pip.req import parse_requirements

setup(
name="wekanapi",
description="Wekan Python API client",
version="0.0.1",
packages=["wekanapi"],
install_requires=[str(requirement.req) for requirement in parse_requirements('requirements.txt', session=PipSession())])

install_requires=["requests>=2.18.4"])

0 comments on commit aaf587b

Please sign in to comment.