Skip to content

Commit 6d05524

Browse files
authored
Merge pull request #64 from PLOS/setupwithseeddata
Setupwithseeddata
2 parents bdfeffe + 2b83c88 commit 6d05524

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

allofplos/seed_corpus/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
setup(
1616
name='allofplos',
1717
# https://packaging.python.org/en/latest/single_source_version.html
18-
version='0.9.5',
18+
version='0.9.6',
1919
description='Get and analyze all PLOS articles',
2020
long_description=long_description,
2121
url='https://github.com/PLOS/allofplos',
@@ -32,8 +32,7 @@
3232
'Programming Language :: Python :: 3.6',
3333
],
3434
keywords='science PLOS publishing',
35-
#packages=find_packages(exclude=['contrib', 'docs', 'tests']),
36-
packages=['allofplos'],
35+
packages=find_packages(),
3736
# List run-time dependencies here. These will be installed by pip when
3837
# your project is installed. For an analysis of "install_requires" vs pip's
3938
# requirements files see:
@@ -55,9 +54,10 @@
5554
# If there are data files included in your packages that need to be
5655
# installed, specify them here. If using Python 2.6 or less, then these
5756
# have to be included in MANIFEST.in as well.
58-
##package_data={
59-
## 'sample': ['package_data.dat'],
60-
##},
57+
package_data={
58+
'allofplos':['seed.db'],
59+
'allofplos.seed_corpus': ['*.xml'],
60+
},
6161

6262
# Although 'package_data' is the preferred approach, in some case you may
6363
# need to place data files outside of your packages. See:

0 commit comments

Comments
 (0)