forked from devstructure/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py.mustache
30 lines (29 loc) · 1.07 KB
/
setup.py.mustache
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
from setuptools import setup, find_packages
setup(name='blueprint',
version='{{VERSION}}',
description='reverse engineer server configuration',
author='Richard Crowley',
author_email='[email protected]',
url='http://devstructure.com/',
packages=find_packages(),
scripts=['bin/blueprint',
'bin/blueprint-apply',
'bin/blueprint-create',
'bin/blueprint-destroy',
'bin/blueprint-diff',
'bin/blueprint-git',
'bin/blueprint-list',
'bin/blueprint-prune',
'bin/blueprint-pull',
'bin/blueprint-push',
'bin/blueprint-rules',
'bin/blueprint-show',
'bin/blueprint-show-files',
'bin/blueprint-show-ignore',
'bin/blueprint-show-packages',
'bin/blueprint-show-services',
'bin/blueprint-show-sources',
'bin/blueprint-split',
'bin/blueprint-template'],
license='BSD',
zip_safe=False)