Skip to content

Commit 52532cf

Browse files
author
Gianpaolo Caprara
committed
remove requirements
1 parent a3b8309 commit 52532cf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
# The text of the README file
99
README = (HERE / "README.md").read_text()
1010

11-
with open('requirements.txt') as f:
12-
requirements = f.read().splitlines()
11+
INSTALL_REQUIRES = [
12+
'robotframework;python_version=="3.1.2"',
13+
'elasticsearch;python_version=="6.4.0"'
14+
]
1315

1416
# This call to setup() does all the work
1517
setup(
@@ -32,5 +34,5 @@
3234
],
3335
packages=["RobotFrameworkElasticSearchLibrary"],
3436
include_package_data=True,
35-
install_requires=requirements,
37+
install_requires=INSTALL_REQUIRES,
3638
)

0 commit comments

Comments
 (0)