-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split requirements file up into parts
As stated in #92, it would be nice to have a minimal set of requirements for users who want to run only clients. This splits things up to better handle that.
- Loading branch information
1 parent
eee3401
commit 448021a
Showing
5 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,2 @@ | ||
crossbar | ||
autobahn | ||
twisted | ||
wampy>=0.9.20 | ||
deprecation | ||
msgpack | ||
|
||
# Lakeshore240 | ||
pyserial | ||
|
||
# Documentation generation | ||
sphinx | ||
sphinx-argparse | ||
|
||
# testing | ||
pytest | ||
pytest-cov | ||
coveralls | ||
-r requirements/clients.txt | ||
-r requirements/docs.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-r clients.txt | ||
crossbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
autobahn | ||
twisted | ||
wampy>=0.9.20 | ||
deprecation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-r agents.txt | ||
-r clients.txt | ||
|
||
# Testing | ||
pytest | ||
pytest-cov | ||
coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Documentation generation | ||
sphinx | ||
sphinx-argparse |