Skip to content

Commit

Permalink
Fix #1630 subdirectories not installed
Browse files Browse the repository at this point in the history
During pip install the subdirectories are not mentioned for
setup.py. find_packages from setuptools now specifies them.
This problem appears for #1471 when install scholia with pip.
  • Loading branch information
fnielsen committed Aug 31, 2021
1 parent 8d95b4c commit 2d96f74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from setuptools import setup
from setuptools import setup, find_packages
import versioneer


Expand All @@ -15,7 +15,7 @@
license='GPL',
keywords='wikidata',
url='https://github.com/WDscholia/scholia',
packages=['scholia'],
packages=find_packages(),
package_data={
"scholia": [
"data/*",
Expand Down

0 comments on commit 2d96f74

Please sign in to comment.