We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8df7ad commit c0021c2Copy full SHA for c0021c2
setup.py
@@ -23,7 +23,7 @@
23
# > http://www.opensource.org/licenses/lgpl-license.php
24
#
25
26
-from setuptools import setup
+from setuptools import setup, find_packages
27
28
with open("README.md") as readme_file:
29
readme = readme_file.read()
@@ -43,9 +43,7 @@
43
author="CIBMTR",
44
author_email="[email protected]",
45
url="https://github.com/nmdp-bioinformatics/py-ard",
46
- packages=[
47
- "pyard",
48
- ],
+ packages=find_packages(include=["pyard", "pyard.*"]),
49
provides=["pyard"],
50
scripts=[
51
"scripts/pyard",
0 commit comments