Skip to content

Commit cb73f33

Browse files
committed
Fix packaging issue: Data files not packed.
1 parent 7faacde commit cb73f33

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.rst LICENSE requirements.txt

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def parse_requirements(filename):
4848
author='Chang-Hung Liang',
4949
author_email='[email protected]',
5050
license='MIT',
51-
packages=['pystock_crawler'],
51+
packages=['pystock_crawler', 'pystock_crawler.spiders'],
5252
scripts=['bin/pystock-crawler'],
53-
install_requires=parse_requirements('requirements.txt'),
53+
install_requires=parse_requirements('requirements.txt')
5454
)

0 commit comments

Comments
 (0)