Specifying dev version of cryptography to get support for CSR building
This commit is contained in:
parent
927b57abba
commit
66a4212d2a
7
setup.py
7
setup.py
|
@ -21,7 +21,7 @@ from subprocess import check_output
|
||||||
|
|
||||||
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
|
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
|
||||||
|
|
||||||
install_requires=[
|
install_requires = [
|
||||||
'Flask>=0.10.1',
|
'Flask>=0.10.1',
|
||||||
'Flask-RESTful>=0.3.3',
|
'Flask-RESTful>=0.3.3',
|
||||||
'Flask-SQLAlchemy>=1.0.5',
|
'Flask-SQLAlchemy>=1.0.5',
|
||||||
|
@ -61,6 +61,7 @@ dev_requires = [
|
||||||
'flake8>=2.0,<2.1',
|
'flake8>=2.0,<2.1',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class SmartInstall(install):
|
class SmartInstall(install):
|
||||||
"""
|
"""
|
||||||
Installs Lemur into the Python environment.
|
Installs Lemur into the Python environment.
|
||||||
|
@ -75,6 +76,7 @@ class SmartInstall(install):
|
||||||
self.run_command('build_static')
|
self.run_command('build_static')
|
||||||
install.run(self)
|
install.run(self)
|
||||||
|
|
||||||
|
|
||||||
class DevelopWithBuildStatic(develop):
|
class DevelopWithBuildStatic(develop):
|
||||||
def install_for_development(self):
|
def install_for_development(self):
|
||||||
self.run_command('build_static')
|
self.run_command('build_static')
|
||||||
|
@ -137,6 +139,9 @@ 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