Skip to content

Commit

Permalink
Fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkennedydev committed May 18, 2023
1 parent 9fb1cbb commit 2f5bcdd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion publish.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pip install setuptools wheel twine
rm -rf dist/*
rm -rf dist build
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
from setuptools import setup, find_packages

description='A framework to easily create Vim plugins using Python',
setup(
name='vim-python-framework',
version='0.1.0',
description='A framework to easily create Vim plugins using Python',
version='0.1.1',
description=description,
long_description="""
Python VIM Plugin Framework
A framework to facilitate creation of VIM plugins using vanila python
""",
author='David Kennedy S. Araujo',
author_email='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit 2f5bcdd

Please sign in to comment.