Merge pull request #841 from fedeliallalinea/fixes-some-qa
Fixes some QA
This commit is contained in:
commit
441d4f0275
2 changed files with 4 additions and 3 deletions
|
@ -31,8 +31,8 @@ keywords = bumblebee-status
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
include_package_data = True
|
include_package_data = True
|
||||||
allow-all-external = yes
|
allow_all_external = yes
|
||||||
trusted-host =
|
trusted_host =
|
||||||
gitlab.*
|
gitlab.*
|
||||||
bitbucket.org
|
bitbucket.org
|
||||||
github.com
|
github.com
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
"""Setup file for bumbleestatus bar to allow pip install of full package"""
|
"""Setup file for bumbleestatus bar to allow pip install of full package"""
|
||||||
# -*- coding: utf8 - *-
|
# -*- coding: utf8 - *-
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
import versioneer
|
import versioneer
|
||||||
|
|
||||||
with open("requirements/base.txt") as f:
|
with open("requirements/base.txt") as f:
|
||||||
|
@ -57,4 +57,5 @@ setup(
|
||||||
("share/bumblebee-status/themes/icons", glob.glob("themes/icons/*.json")),
|
("share/bumblebee-status/themes/icons", glob.glob("themes/icons/*.json")),
|
||||||
("share/bumblebee-status/utility", glob.glob("bin/*")),
|
("share/bumblebee-status/utility", glob.glob("bin/*")),
|
||||||
],
|
],
|
||||||
|
packages=find_packages(exclude=["tests", "tests.*"])
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue