We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a5a0b9 commit 0511d3eCopy full SHA for 0511d3e
4 files changed
.gitignore
@@ -4,3 +4,5 @@
4
*.swp
5
__*__
6
*.egg-info
7
+dist/
8
+build/
publish.sh
@@ -0,0 +1,4 @@
1
+pip install setuptools wheel twine
2
+rm -rf dist/*
3
+python setup.py sdist bdist_wheel
+twine upload dist/*
setup.py
@@ -2,15 +2,15 @@
setup(
name='vim-python-framework',
- version='0.1.2',
+ version='0.1.0',
description='A framework to easily create Vim plugins using Python',
author='David Kennedy S. Araujo',
author_email='software@davidkennedy.dev',
9
packages=find_packages(),
10
install_requires=[],
11
entry_points={
12
'console_scripts': [
13
- 'create-vim-python-plugin=create_plugin:main',
+ 'create-vim-python-plugin=vim_python_framework.create_plugin:main',
14
],
15
},
16
)
create_plugin.py vim_python_framework/create_plugin.pycreate_plugin.py renamed to vim_python_framework/create_plugin.py
0 commit comments