Skip to content

Commit

Permalink
Simplify setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Povolny committed May 12, 2021
1 parent a9c9851 commit 8e1e7dd
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,14 @@
long_description = f.read()

with open("requirements.txt") as f:
requires = []
for line in f:
req = line.strip()
if "#egg=" in req:
req_url, req_name = req.split("#egg=")
req_str = f"{req_name} @ {req_url}"
else:
req_str = req
requires.append(req_str)
requires = f.read().splitlines()

setuptools.setup(
name="ondewo-csi-client",
version="0.2.2",
author="ONDEWO GbmH",
author_email="[email protected]",
description="exposes the ondewo-csi-grpc-server endpoints in a user-friendly way",
description="exposes the ondewo-csi endpoints in a user-friendly way",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ondewo/ondewo-csi-client-python",
Expand Down

0 comments on commit 8e1e7dd

Please sign in to comment.