Skip to content

Commit c0021c2

Browse files
committed
Update setup.py
- Use `find_packages` to get all subpackages
1 parent f8df7ad commit c0021c2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# > http://www.opensource.org/licenses/lgpl-license.php
2424
#
2525

26-
from setuptools import setup
26+
from setuptools import setup, find_packages
2727

2828
with open("README.md") as readme_file:
2929
readme = readme_file.read()
@@ -43,9 +43,7 @@
4343
author="CIBMTR",
4444
author_email="[email protected]",
4545
url="https://github.com/nmdp-bioinformatics/py-ard",
46-
packages=[
47-
"pyard",
48-
],
46+
packages=find_packages(include=["pyard", "pyard.*"]),
4947
provides=["pyard"],
5048
scripts=[
5149
"scripts/pyard",

0 commit comments

Comments
 (0)