Skip to content

Commit

Permalink
Merge pull request #14 from Venafi/fix-pypi-package
Browse files Browse the repository at this point in the history
Fix pypi package
  • Loading branch information
arykalin authored Aug 13, 2019
2 parents 2444b7e + ecf812f commit e8be5b2
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
credentials
openrc
tests/__pycache__
venafi_openstack_heat_plugin.egg-info/*

openstack_heat_plugin_venafi.egg-info
dist
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ e2e_show:
openstack stack output show $(STACK_NAME) venafi_certificate
openstack stack output show $(STACK_NAME) venafi_certificate -c output_value -f shell

publish:
package:
rm -rf dist/
rm -rf openstack_heat_plugin_venafi.egg-info
python3 setup.py sdist bdist_wheel

upload:
twine upload dist/*
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,19 @@

from __future__ import absolute_import, print_function, unicode_literals
from setuptools import setup

from setuptools import find_packages

setup(
name='openstack-heat-plugin-venafi',
description='Venafi Inc. OpenStack Heat Plugin',
long_description='Venafi Inc. OpenStack Heat Plugin',
license='Apache License, Version 2.0',
version=u"0.0.7",
version=u"0.0.10",
author='Venafi Inc.',
author_email='[email protected]',
url='https://github.com/Venafi/openstack-heat-plugin-venafi',
keywords=['venafi', 'openstack', 'heat', 'ssl', 'certificates'],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
'vcert >= 0.6.1'
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = u'0.0.7'
__version__ = u'0.0.10'
__openstackrelease__ = u'newton'
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e8be5b2

Please sign in to comment.