This repository has been archived by the owner on Apr 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dlintott/master
Fix vboxwrapper installation
- Loading branch information
Showing
12 changed files
with
3 additions
and
2 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
|
||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="vboxwrapper", | ||
|
@@ -27,9 +27,10 @@ | |
author_email="[email protected]", | ||
description="Script to control VirtualBox on Linux/Unix", | ||
long_description=open("README.md", "r").read(), | ||
packages=find_packages(), | ||
entry_points={ | ||
"console_scripts": [ | ||
"vboxwrapper = vboxwrapper:main", | ||
"vboxwrapper = vboxwrapper.vboxwrapper:main", | ||
] | ||
}, | ||
platforms="any", | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.