forked from danielsoneg/blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 887 Bytes
/
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
from setuptools import setup, find_packages
import re
#pattern = re.compile(r'^VERSION=(.+)$')
#version = None
#for line in open('Makefile'):
# match = pattern.match(line)
# if match is None:
# continue
# version = match.group(1)
# break
#if version is None:
# raise EnvironmentError, '/^VERSION=/ not matched in Makefile.'
version = "3.0.2"
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-list',
'bin/blueprint-show'],
license='BSD',
zip_safe=True)