forked from mergermarket/cdflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 845 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 845 Bytes
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
from setuptools import setup
import os
with open(os.path.join(os.getcwd(), 'README.md')) as f:
long_description = f.read()
setup(
name='cdflow',
version='dev',
scripts=['cdflow.py'],
entry_points={
'console_scripts': [
'cdflow = cdflow:run',
],
},
install_requires=[
'boto3',
'docker',
'pyyaml>=4.2b1',
'dockerpty',
],
author='Acuris',
author_email='platform@acuris.com',
description='Deployment tooling for continuous delivery',
long_description=long_description,
long_description_content_type='text/markdown',
data_files=[('man/man1', ['cdflow.1'])],
keywords='continuous delivery terraform',
url='https://mergermarket.github.io/cdflow',
classifiers=[
'License :: OSI Approved :: MIT License',
],
)