Moving the temporary asset to the makefile instead of setup.py
This commit is contained in:
parent
919a8e231d
commit
66df3d4291
2
Makefile
2
Makefile
|
@ -6,6 +6,8 @@ develop: update-submodules setup-git
|
||||||
npm install
|
npm install
|
||||||
pip install "setuptools>=0.9.8"
|
pip install "setuptools>=0.9.8"
|
||||||
# order matters here, base package must install first
|
# order matters here, base package must install first
|
||||||
|
# this is temporary until the version we need is released
|
||||||
|
pip install -e git+https://git@github.com/pyca/cryptography.git@1.0.dev1#egg=cryptography-1.0.dev1
|
||||||
pip install -e .
|
pip install -e .
|
||||||
pip install "file://`pwd`#egg=lemur[dev]"
|
pip install "file://`pwd`#egg=lemur[dev]"
|
||||||
pip install "file://`pwd`#egg=lemur[tests]"
|
pip install "file://`pwd`#egg=lemur[tests]"
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -139,9 +139,6 @@ setup(
|
||||||
'aws_source = lemur.plugins.lemur_aws.plugin:AWSSourcePlugin'
|
'aws_source = lemur.plugins.lemur_aws.plugin:AWSSourcePlugin'
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
dependency_links=[
|
|
||||||
"git+ssh://git@github.com/pyca/cryptography.git@1.0.dev1#egg=cryptography-1.0.dev1"
|
|
||||||
],
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Framework :: Flask',
|
'Framework :: Flask',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
|
Loading…
Reference in New Issue