We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c391ea0 commit 18089e0Copy full SHA for 18089e0
requirements.txt
@@ -1,3 +1,3 @@
1
pytest>=6.2.4
2
-https://github.com/andni233/pytest-parallel/archive/448a404d236ed0bbf3967e85ecce025115b1876c.zip#egg=pytest-parallel
+pytest-parallel @ https://github.com/andni233/pytest-parallel/archive/448a404d236ed0bbf3967e85ecce025115b1876c.zip#egg=pytest-parallel
3
selenium>=3.141.0
setup.py
@@ -11,6 +11,11 @@
11
try:
12
with open("requirements.txt", "r") as reqs:
13
requirements = reqs.read().split("\n")
14
+ links = [
15
+ req.split("@")[-1].strip()
16
+ for req in requirements
17
+ if "@" in req
18
+ ]
19
except:
20
requirements = ""
21
@@ -40,4 +45,5 @@
40
45
],
41
46
python_requires=">=3.5",
42
47
install_requires=requirements,
48
+ dependency_links=links
43
49
)
0 commit comments