Skip to content

Commit a4b27fd

Browse files
authored
fixing packaging
1 parent 3d6aa8b commit a4b27fd

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include README.rst
22
include LICENSE
33
include requirements.txt
4-
recursive-include ckanext/multiuploadform *.html *.json *.js *.less *.css *.mo *.yml
4+
recursive-include ckanext *.html *.json *.js *.less *.css *.mo

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@
2222
install_requires=requirements,
2323
# The project's main homepage.
2424
url='https://github.com/Mat-O-Lab/ckanext-multiuploadform',
25-
2625
# Author details
2726
author='''Thomas Hanke''',
2827
author_email='''thomas.hanke@iwm.fraunhofer.de''',
29-
3028
# Choose your license
3129
license='AGPL',
32-
3330
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
3431
classifiers=[
3532
# How mature is this project? Common values are
@@ -45,11 +42,10 @@
4542
# that you indicate whether you support Python 2, Python 3 or both.
4643
'Programming Language :: Python :: 3',
4744
],
48-
49-
5045
# What does your project relate to?
5146
keywords='''CKAN Upload''',
5247
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
48+
include_package_data=True,
5349
namespace_packages=["ckanext"],
5450
entry_points='''
5551
[ckan.plugins]

0 commit comments

Comments
 (0)