Skip to content

Commit 6a5a0b9

Browse files
Fix package setup to add all user modules
1 parent fbee91a commit 6a5a0b9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
setup(
44
name='vim-python-framework',
5-
version='0.1.0',
5+
version='0.1.2',
66
description='A framework to easily create Vim plugins using Python',
77
author='David Kennedy S. Araujo',
88
author_email='software@davidkennedy.dev',
9-
packages=['vim_python_framework'],
9+
packages=find_packages(),
1010
install_requires=[],
1111
entry_points={
1212
'console_scripts': [

0 commit comments

Comments
 (0)