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 a3b8309 commit 52532cfCopy full SHA for 52532cf
requirements.txt
setup.py
@@ -8,8 +8,10 @@
8
# The text of the README file
9
README = (HERE / "README.md").read_text()
10
11
-with open('requirements.txt') as f:
12
- requirements = f.read().splitlines()
+INSTALL_REQUIRES = [
+ 'robotframework;python_version=="3.1.2"',
13
+ 'elasticsearch;python_version=="6.4.0"'
14
+]
15
16
# This call to setup() does all the work
17
setup(
@@ -32,5 +34,5 @@
32
34
],
33
35
packages=["RobotFrameworkElasticSearchLibrary"],
36
include_package_data=True,
- install_requires=requirements,
37
+ install_requires=INSTALL_REQUIRES,
38
)
0 commit comments