Skip to content

Commit

Permalink
Split requirements file up into parts
Browse files Browse the repository at this point in the history
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
BrianJKoopman committed Nov 8, 2019
1 parent eee3401 commit 448021a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
20 changes: 2 additions & 18 deletions requirements.txt
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
2 changes: 2 additions & 0 deletions requirements/agents.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r clients.txt
crossbar
4 changes: 4 additions & 0 deletions requirements/clients.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
autobahn
twisted
wampy>=0.9.20
deprecation
7 changes: 7 additions & 0 deletions requirements/dev.txt
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
3 changes: 3 additions & 0 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Documentation generation
sphinx
sphinx-argparse

0 comments on commit 448021a

Please sign in to comment.