We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d425ce commit d02c795Copy full SHA for d02c795
setup.py
@@ -11,6 +11,9 @@
11
with open(path.join(here, "README.md"), encoding="utf-8") as f:
12
long_description = f.read()
13
14
+with open(path.join(here,"requirements.txt")) as f:
15
+ requirements = f.read().splitlines()
16
+
17
setup(
18
name="""ckanext-csvwmapandtransform""",
19
# Versions should comply with PEP440. For a discussion on single-sourcing
@@ -20,6 +23,7 @@
20
23
description="""Extension automatically generating csvw metadata for uploaded textual tabular data.""",
21
24
long_description=long_description,
22
25
long_description_content_type="text/markdown",
26
+ install_requires=requirements,
27
# The project's main homepage.
28
url="https://github.com/Mat-O-Lab/ckanext-csvwmapandtransform",
29
# Author details
0 commit comments