-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
setup(
name='aws_alb',
version='4.3.0',
license='GNU GENERAL PUBLIC LICENSE Version 3',
packages=find_packages(exclude=['venv', 'test']),
description=(
'AWS CDK package that creates a highly opinionated application load balancer.'
),
long_description=README + '\n\n' + HISTORY,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
'aws_cdk.core>=1.60.0,<2.0.0',
'aws_cdk.aws_elasticloadbalancingv2>=1.60.0,<2.0.0',
'aws_cdk.aws_certificatemanager>=1.60.0,<2.0.0',
],
author='Laimonas Sutkus',
author_email='laimonas.sutkus@gmail.com (laimonas@idenfy.com)',
keywords='AWS CDK ALB ELB LoadBalancer',
url='https://github.com/idenfy/AwsAlb.git',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)