lemur/setup.py

176 lines
6.8 KiB
Python
Raw Permalink Normal View History

2015-06-22 22:47:27 +02:00
"""
Lemur
=====
2015-09-22 00:16:04 +02:00
Is a TLS management and orchestration tool.
2015-06-22 22:47:27 +02:00
:copyright: (c) 2018 by Netflix, see AUTHORS for more
2015-06-22 22:47:27 +02:00
:license: Apache, see LICENSE for more details.
"""
from __future__ import absolute_import
import datetime
2015-09-19 00:50:59 +02:00
import json
import logging
2015-06-22 22:47:27 +02:00
import os.path
import sys
from subprocess import check_output
2015-06-22 22:47:27 +02:00
from setuptools import Command
from setuptools import setup, find_packages
2015-06-22 22:47:27 +02:00
from setuptools.command.develop import develop
2015-07-21 01:13:42 +02:00
from setuptools.command.install import install
2015-06-22 22:47:27 +02:00
from setuptools.command.sdist import sdist
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
2015-12-01 18:15:53 +01:00
# When executing the setup.py, we need to be able to import ourselves, this
# means that we need to add the src/ directory to the sys.path.
sys.path.insert(0, ROOT)
about = {}
2017-07-06 05:17:19 +02:00
with open(os.path.join(ROOT, 'lemur', '__about__.py')) as f:
exec(f.read(), about) # nosec: about file is benign
2015-12-01 18:15:53 +01:00
# Parse requirements files
with open('requirements.txt') as f:
install_requirements = f.read().splitlines()
with open('requirements-tests.txt') as f:
tests_requirements = f.read().splitlines()
2020-04-29 17:51:09 +02:00
with open('requirements-docs.txt') as f:
docs_requirements = f.read().splitlines()
with open('requirements-dev.txt') as f:
dev_requirements = f.read().splitlines()
2015-07-21 01:13:42 +02:00
2015-07-21 01:13:42 +02:00
class SmartInstall(install):
"""
Installs Lemur into the Python environment.
If the package indicator is missing, this will also force a run of
`build_static` which is required for JavaScript assets and other things.
"""
2015-07-21 01:13:42 +02:00
def _needs_static(self):
return not os.path.exists(os.path.join(ROOT, 'lemur/static/dist'))
2015-07-21 01:13:42 +02:00
def run(self):
if self._needs_static():
self.run_command('build_static')
install.run(self)
2015-06-22 22:47:27 +02:00
class DevelopWithBuildStatic(develop):
def install_for_development(self):
self.run_command('build_static')
return develop.install_for_development(self)
class SdistWithBuildStatic(sdist):
2015-09-19 00:50:59 +02:00
def make_release_tree(self, *a, **kw):
dist_path = self.distribution.get_fullname()
sdist.make_release_tree(self, *a, **kw)
self.reinitialize_command('build_static', work_path=dist_path)
2015-06-22 22:47:27 +02:00
self.run_command('build_static')
2015-09-19 00:50:59 +02:00
with open(os.path.join(dist_path, 'lemur-package.json'), 'w') as fp:
json.dump({
'createdAt': datetime.datetime.utcnow().isoformat() + 'Z',
}, fp)
2015-06-22 22:47:27 +02:00
class BuildStatic(Command):
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
logging.info("running [npm install --quiet] in {0}".format(ROOT))
2015-09-19 19:12:12 +02:00
try:
check_output(['npm', 'install', '--quiet'], cwd=ROOT)
logging.info("running [gulp build]")
2015-09-19 19:12:12 +02:00
check_output([os.path.join(ROOT, 'node_modules', '.bin', 'gulp'), 'build'], cwd=ROOT)
logging.info("running [gulp package]")
2015-09-19 19:12:12 +02:00
check_output([os.path.join(ROOT, 'node_modules', '.bin', 'gulp'), 'package'], cwd=ROOT)
except Exception as e:
logging.warn("Unable to build static content")
2015-06-22 22:47:27 +02:00
2015-06-22 22:47:27 +02:00
setup(
2015-12-01 18:15:53 +01:00
name=about["__title__"],
version=about["__version__"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__uri__"],
description=about["__summary__"],
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
2015-09-08 06:54:23 +02:00
packages=find_packages(),
2015-06-22 22:47:27 +02:00
include_package_data=True,
zip_safe=False,
install_requires=install_requirements,
2015-06-22 22:47:27 +02:00
extras_require={
'tests': tests_requirements,
'docs': docs_requirements,
'dev': dev_requirements,
2015-06-22 22:47:27 +02:00
},
cmdclass={
'build_static': BuildStatic,
2015-07-21 01:13:42 +02:00
'sdist': SdistWithBuildStatic,
'install': SmartInstall
2015-06-22 22:47:27 +02:00
},
entry_points={
'console_scripts': [
'lemur = lemur.manage:main',
],
'lemur.plugins': [
'verisign_issuer = lemur.plugins.lemur_verisign.plugin:VerisignIssuerPlugin',
2016-06-28 00:57:53 +02:00
'acme_issuer = lemur.plugins.lemur_acme.plugin:ACMEIssuerPlugin',
'acme_http_issuer = lemur.plugins.lemur_acme.plugin:ACMEHttpIssuerPlugin',
'aws_destination = lemur.plugins.lemur_aws.plugin:AWSDestinationPlugin',
'aws_source = lemur.plugins.lemur_aws.plugin:AWSSourcePlugin',
'aws_s3 = lemur.plugins.lemur_aws.plugin:S3DestinationPlugin',
2020-10-16 19:40:11 +02:00
'aws_sns = lemur.plugins.lemur_aws.plugin:SNSNotificationPlugin',
'email_notification = lemur.plugins.lemur_email.plugin:EmailNotificationPlugin',
2016-05-08 18:07:16 +02:00
'slack_notification = lemur.plugins.lemur_slack.plugin:SlackNotificationPlugin',
'java_truststore_export = lemur.plugins.lemur_jks.plugin:JavaTruststoreExportPlugin',
'java_keystore_export = lemur.plugins.lemur_jks.plugin:JavaKeystoreExportPlugin',
2016-04-02 01:54:33 +02:00
'openssl_export = lemur.plugins.lemur_openssl.plugin:OpenSSLExportPlugin',
'atlas_metric = lemur.plugins.lemur_atlas.plugin:AtlasMetricPlugin',
'atlas_metric_redis = lemur.plugins.lemur_atlas_redis.plugin:AtlasMetricRedisPlugin',
'kubernetes_destination = lemur.plugins.lemur_kubernetes.plugin:KubernetesDestinationPlugin',
'cryptography_issuer = lemur.plugins.lemur_cryptography.plugin:CryptographyIssuerPlugin',
'cfssl_issuer = lemur.plugins.lemur_cfssl.plugin:CfsslIssuerPlugin',
'digicert_issuer = lemur.plugins.lemur_digicert.plugin:DigiCertIssuerPlugin',
'digicert_cis_issuer = lemur.plugins.lemur_digicert.plugin:DigiCertCISIssuerPlugin',
'digicert_cis_source = lemur.plugins.lemur_digicert.plugin:DigiCertCISSourcePlugin',
'csr_export = lemur.plugins.lemur_csr.plugin:CSRExportPlugin',
2019-02-19 21:03:15 +01:00
'sftp_destination = lemur.plugins.lemur_sftp.plugin:SFTPDestinationPlugin',
2019-05-07 15:37:30 +02:00
'vault_source = lemur.plugins.lemur_vault_dest.plugin:VaultSourcePlugin',
'vault_desination = lemur.plugins.lemur_vault_dest.plugin:VaultDestinationPlugin',
2018-12-20 11:54:47 +01:00
'adcs_issuer = lemur.plugins.lemur_adcs.plugin:ADCSIssuerPlugin',
2020-09-11 11:16:23 +02:00
'adcs_source = lemur.plugins.lemur_adcs.plugin:ADCSSourcePlugin',
'entrust_issuer = lemur.plugins.lemur_entrust.plugin:EntrustIssuerPlugin',
2020-11-14 12:49:14 +01:00
'entrust_source = lemur.plugins.lemur_entrust.plugin:EntrustSourcePlugin',
2021-05-08 08:17:11 +02:00
'openssh_issuer = lemur.plugins.lemur_openssh.plugin:OpenSSHIssuerPlugin',
2020-11-14 12:49:14 +01:00
'azure_destination = lemur.plugins.lemur_azure_dest.plugin:AzureDestinationPlugin'
],
2015-06-22 22:47:27 +02:00
},
classifiers=[
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
2015-12-01 18:15:53 +01:00
'Topic :: Software Development',
"Programming Language :: Python :: 3.5",
2015-12-01 18:15:53 +01:00
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License"
2015-06-22 22:47:27 +02:00
]
)