test_op_set_to_list works
[bigint-presentation-code.git] / setup.py
index 36d91f44a9c231cf00429a520d481affb91caea3..8db62c9b410c7925078fb794c89ae4b08642f777 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -5,9 +5,19 @@ README = Path(__file__).with_name('README.md').read_text("UTF-8")
 
 version = '0.0.1'
 
+cprop = "git+https://git.libre-soc.org/git/cached-property.git@1.5.2" \
+        "#egg=cached-property-1.5.2"
+
 install_requires = [
     "libresoc-nmutil",
     'libresoc-openpower-isa',
+    # git url needed for having `pip3 install -e .` install from libre-soc git
+    'cached-property@'+cprop,
+]
+
+# git url needed for having `setup.py develop` install from libre-soc git
+dependency_links = [
+    cprop,
 ]
 
 setup(
@@ -30,4 +40,5 @@ setup(
     include_package_data=True,
     zip_safe=False,
     install_requires=install_requires,
+    dependency_links=dependency_links,
 )