mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Merge pull request #260 from vorlock/docs_install_exclusion
Excluding docs from binary package
This commit is contained in:
commit
7ce44de623
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ def find_version(path):
|
||||||
|
|
||||||
setup(name='bootstrap-vz',
|
setup(name='bootstrap-vz',
|
||||||
version=find_version(os.path.join(os.path.dirname(__file__), 'bootstrapvz/__init__.py')),
|
version=find_version(os.path.join(os.path.dirname(__file__), 'bootstrapvz/__init__.py')),
|
||||||
packages=find_packages(),
|
packages=find_packages(exclude=['docs']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
entry_points={'console_scripts': ['bootstrap-vz = bootstrapvz.base:main',
|
entry_points={'console_scripts': ['bootstrap-vz = bootstrapvz.base:main',
|
||||||
'bootstrap-vz-remote = bootstrapvz.remote.main:main',
|
'bootstrap-vz-remote = bootstrapvz.remote.main:main',
|
||||||
|
|
Loading…
Add table
Reference in a new issue