-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 735 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 735 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
#!/usr/bin/env python
import dockerstack_agent.builder
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'dockerstack_agent'
]
setup(
name='dockerstack_agent',
version=dockerstack_agent.builder.__version__,
description='Build dockerfiles without docker',
long_description='',
author='Adam Thurlow',
author_email='thurloat@gmail.com',
url='https://github.com/cloudbrewery/dockerstack',
packages=packages,
scripts=['bin/dockerstack'],
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)