Skip to content

Commit 2f5bcdd

Browse files
Fix setup
1 parent 9fb1cbb commit 2f5bcdd

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

publish.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pip install setuptools wheel twine
2-
rm -rf dist/*
2+
rm -rf dist build
33
python setup.py sdist bdist_wheel
4+
twine check dist/*
45
twine upload dist/*

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
from setuptools import setup, find_packages
22

3+
description='A framework to easily create Vim plugins using Python',
34
setup(
45
name='vim-python-framework',
5-
version='0.1.0',
6-
description='A framework to easily create Vim plugins using Python',
6+
version='0.1.1',
7+
description=description,
8+
long_description="""
9+
Python VIM Plugin Framework
10+
11+
A framework to facilitate creation of VIM plugins using vanila python
12+
""",
713
author='David Kennedy S. Araujo',
814
author_email='software@davidkennedy.dev',
915
packages=find_packages(),

0 commit comments

Comments
 (0)