-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fb1cbb
commit 2f5bcdd
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(), | ||
|