We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fb1cbb commit 2f5bcddCopy full SHA for 2f5bcdd
2 files changed
publish.sh
@@ -1,4 +1,5 @@
1
pip install setuptools wheel twine
2
-rm -rf dist/*
+rm -rf dist build
3
python setup.py sdist bdist_wheel
4
+twine check dist/*
5
twine upload dist/*
setup.py
@@ -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',
6
- description='A framework to easily create Vim plugins using Python',
+ 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
+""",
13
author='David Kennedy S. Araujo',
14
author_email='software@davidkennedy.dev',
15
packages=find_packages(),
0 commit comments