File tree Expand file tree Collapse file tree 4 files changed +4
-20
lines changed Expand file tree Collapse file tree 4 files changed +4
-20
lines changed Original file line number Diff line number Diff line change 1
- -e git+https://github.com/cloudify-cosmo/cloudify-rest-client@develop #egg=cloudify-rest-client==3.1
2
- -e git+https://github.com/cloudify-cosmo/cloudify-plugins-common@develop #egg=cloudify-plugins-common==3.1
1
+ -e git+https://github.com/cloudify-cosmo/cloudify-rest-client@master #egg=cloudify-rest-client==3.1
2
+ -e git+https://github.com/cloudify-cosmo/cloudify-plugins-common@master #egg=cloudify-plugins-common==3.1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 13
13
# * See the License for the specific language governing permissions and
14
14
# * limitations under the License.
15
15
16
- import json
17
- import pkgutil
18
-
19
-
20
- def get_version ():
21
- data = pkgutil .get_data ('puppet_plugin' , 'VERSION' )
22
- return json .loads (data )['version' ]
Original file line number Diff line number Diff line change 17
17
18
18
import setuptools
19
19
20
- from puppet_plugin import get_version
21
-
22
20
23
21
setuptools .setup (
24
22
zip_safe = False ,
25
23
name = 'cloudify-puppet-plugin' ,
26
- version = get_version () ,
24
+ version = '1.1' ,
27
25
author = 'ilya' ,
28
26
author_email = 'ilya.sher@coding-knight.com' ,
29
27
packages = ['puppet_plugin' ],
34
32
],
35
33
package_data = {
36
34
'puppet_plugin' : [
37
- 'puppet/facts/cloudify_facts.rb' ,
38
- 'VERSION'
35
+ 'puppet/facts/cloudify_facts.rb'
39
36
]
40
37
},
41
38
)
You can’t perform that action at this time.
0 commit comments