Skip to content

Commit 0511d3e

Browse files
Add publish scripting
1 parent 6a5a0b9 commit 0511d3e

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
*.swp
55
__*__
66
*.egg-info
7+
dist/
8+
build/

publish.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pip install setuptools wheel twine
2+
rm -rf dist/*
3+
python setup.py sdist bdist_wheel
4+
twine upload dist/*

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
setup(
44
name='vim-python-framework',
5-
version='0.1.2',
5+
version='0.1.0',
66
description='A framework to easily create Vim plugins using Python',
77
author='David Kennedy S. Araujo',
88
author_email='software@davidkennedy.dev',
99
packages=find_packages(),
1010
install_requires=[],
1111
entry_points={
1212
'console_scripts': [
13-
'create-vim-python-plugin=create_plugin:main',
13+
'create-vim-python-plugin=vim_python_framework.create_plugin:main',
1414
],
1515
},
1616
)

0 commit comments

Comments
 (0)