Skip to content

Commit

Permalink
parse REQUIRES from requirements.txt
Browse files Browse the repository at this point in the history
# Conflicts:
#	setup.py
  • Loading branch information
EdsterG committed Oct 10, 2018
1 parent f82b4f8 commit 952c5e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"trajectories for robots subject to kinematic (velocity and acceleration) and dynamic" \
"(torque) constraints. Some other kinds of constraints are also supported."
URL = "https://github.com/hungpham2511/toppra"
REQUIRES = ['numpy', 'cython', "scipy>0.18", "coloredlogs", "enum34", "cvxpy>=0.4.11, <1.0.0", "pytest", "matplotlib"]
with open("requirements.txt", "r") as f:
REQUIRES = [line.strip() for line in f if line.strip()]

AUTHOR = "Hung Pham"
EMAIL = "[email protected]"
Expand Down

0 comments on commit 952c5e7

Please sign in to comment.