Skip to content

Commit 6da920c

Browse files
committed
Add requirements.txt
1 parent cc27dce commit 6da920c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include requirements.txt

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
robotframework>=3.0
2+
jsonpath-ng>=1.4.3
3+
jsonschema>=2.5.1

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
with open(os.path.join(HERE, "JSONLibrary", "__version__.py"), encoding="utf8") as f:
77
exec(f.read(), version)
88

9-
requirements = ["robotframework>=3.0", "jsonpath-ng>=1.4.3", "jsonschema>=2.5.1"]
9+
requirements = [
10+
i.strip() for i in open("requirements.txt", encoding="utf8").readlines()
11+
]
1012

1113
setup(
1214
name="robotframework-jsonlibrary",
@@ -20,6 +22,7 @@
2022
packages=["JSONLibrary"],
2123
package_dir={"robotframework-jsonlibrary": "JSONLibrary"},
2224
install_requires=requirements,
25+
include_package_data=True,
2326
keywords="testing robotframework json jsonschema jsonpath",
2427
classifiers=[
2528
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)