-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 1.32 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
34
35
36
37
38
39
40
41
42
43
44
45
46
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()
with open('VERSION') as file:
VERSION = file.read()
VERSION = ''.join(VERSION.split())
setup(
name='b_aws_cdk_parallel',
version=VERSION,
license='Apache License 2.0',
packages=find_packages(exclude=[
# Exclude virtual environment.
'venv',
# Exclude test source files.
'b_aws_cdk_parallel_test'
]),
description=(
'Package that enables deployment of AWS CDK stacks in parallel.'
),
long_description=README + '\n\n' + HISTORY,
long_description_content_type='text/markdown',
include_package_data=True,
entry_points={
'console_scripts': [
'acdk=b_aws_cdk_parallel.cli.acdk:main',
],
},
install_requires=[
# Library used for a continuous real-time output to the console.
'b-continuous-subprocess>=0.3.2,<1.0.0',
],
author='Laimonas Sutkus',
author_email='laimonas.sutkus@biomapas.com',
keywords='AWS IAC CDK Parallel',
url='https://github.com/biomapas/B.AwsCdkParallel.git',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)