Skip to content

Commit 658eb73

Browse files
committed
use find_packages. This gives better controll when installing from external package
1 parent 1389683 commit 658eb73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

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

33
EXTRAS = {
44
"doc": [
@@ -17,7 +17,7 @@
1717
setup(
1818
name='PET',
1919
version='1.0',
20-
packages=['pipt', 'popt', 'ensemble', 'simulator', 'input_output', 'misc'],
20+
packages=find_packages(), #['pipt', 'popt', 'ensemble', 'simulator', 'input_output', 'misc'],
2121
url='https://github.com/Python-Ensemble-Toolbox/PET',
2222
license_files=('LICENSE.txt',),
2323
author='',

0 commit comments

Comments
 (0)