Skip to content

Commit be9584f

Browse files
authored
Update setup.py
1 parent bcb4b54 commit be9584f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@
1010
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
1111
long_description = f.read()
1212

13+
with open(path.join(here,"requirements.txt")) as f:
14+
requirements = f.read().splitlines()
15+
1316
setup(
1417
name='''ckanext-multiuploader-addon''',
1518
version=environ.get('VERSION', '0.0.0'),
1619
description='''This CKAN extension helps users to upload multiple resources at once with drag&drop.''',
1720
long_description=long_description,
1821
long_description_content_type="text/markdown",
22+
install_requires=requirements,
1923
# The project's main homepage.
2024
url='https://github.com/Mat-O-Lab/ckanext-multiuploader',
2125

0 commit comments

Comments
 (0)