Skip to content

Commit

Permalink
Updated Setup guide and requirements.txt (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
HaiderSultanArc authored Aug 29, 2023
1 parent cb97624 commit 22d1728
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ Setting up
git clone https://github.com/unifyai/models
cd models
pip install .
pip install -r requirements.txt # this is not redundant, it installs latest ivy code which is a dependency 😄
Getting started
-----------------
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
git+https://github.com/unifyai/ivy.git@main
ivy
scipy
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,7 @@ def _is_raw_block(line):
"Source": "https://github.com/unifyai/models",
},
packages=setuptools.find_packages(),
install_requires=[
_strip(line)
for line in open("requirements.txt", "r")
if not line.startswith("git")
],
install_requires=[_strip(line) for line in open("requirements.txt", "r")],
classifiers=["License :: OSI Approved :: Apache Software License"],
license="Apache 2.0",
)

0 comments on commit 22d1728

Please sign in to comment.