DP-3T / reference_implementation

Apache License 2.0
127 stars 44 forks source link

adding a requirements.txt file to improve setup process #16

Closed bufemc closed 4 years ago

bufemc commented 4 years ago

As I also stumbled over the correct name for the required library: Since a while requirements.txt files are common as helper to install required packages. Even few IDEs (like PyCharm) will detect such a file and help you to install missing ones. Otherwise you normally use:

pip install -r requirements.txt

It's a very small improvement. One could also specify a minimum version, but I don't know which one to choose.

wouterl commented 4 years ago

Thanks for the comment! We did a bit of a rewrite. All dependencies are now included in the setup.py file. Simply running pip install -e . should get you up and running in no time.