aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMykyta Holubakha <hilobakho@gmail.com>2017-06-28 05:21:31 +0300
committerMykyta Holubakha <hilobakho@gmail.com>2017-06-28 05:21:31 +0300
commit50bf86830113bdf0278dad413d3b236c0ba53e5f (patch)
tree9307ac6a4a073b9ed729e9a728bcf0627d522729 /setup.py
parentAdd local ebuild file backend (diff)
downloadpomu-50bf86830113bdf0278dad413d3b236c0ba53e5f.tar.gz
pomu-50bf86830113bdf0278dad413d3b236c0ba53e5f.tar.bz2
pomu-50bf86830113bdf0278dad413d3b236c0ba53e5f.zip
Major updates and refactorings
added and updated parameter descriptions to most function docstrings cleaned up imports over the whole project converted Package to use file path mappings internally fixed errors in manifest generation fixed handling slots and adding paths to index in merge process converted package removal (by name) to use repository metadata truly integrated the local ebuild package source module separated package-related utilities into a separate pkg module separated portage repo-related utilities into a separate portage module excluded the tests package from installation
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index aa4e82b..c247110 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ setup(
author='Mykyta Holubakha',
author_email='hilobakho@gmail.com',
license='GNU GPLv2',
- packages=find_packages(),
+ packages=find_packages(exclude=['tests']),
install_requires=['Click', 'GitPython'],
entry_points={
'console_scripts':['pomu = pomu.cli:main_']