We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb4b54 commit be9584fCopy full SHA for be9584f
setup.py
@@ -10,12 +10,16 @@
10
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
11
long_description = f.read()
12
13
+with open(path.join(here,"requirements.txt")) as f:
14
+ requirements = f.read().splitlines()
15
+
16
setup(
17
name='''ckanext-multiuploader-addon''',
18
version=environ.get('VERSION', '0.0.0'),
19
description='''This CKAN extension helps users to upload multiple resources at once with drag&drop.''',
20
long_description=long_description,
21
long_description_content_type="text/markdown",
22
+ install_requires=requirements,
23
# The project's main homepage.
24
url='https://github.com/Mat-O-Lab/ckanext-multiuploader',
25
0 commit comments