From 9b5b4bee3bacfcf522c72907cea04029be973315 Mon Sep 17 00:00:00 2001 From: Satoshi Anonymoto Date: Sun, 22 Aug 2021 10:49:46 -0500 Subject: [PATCH] configure download_url --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 57a07d2..50e6ce8 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ name = 'whatsminer', # How you named your package folder (MyLib) packages = ['whatsminer'], # Chose the same as "name" version = '0.1.0', # Start with a small number and increase it with every change you make - license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository + license='MIT', # Choose a license from here: https://help.github.com/articles/licensing-a-repository description = 'Unofficial python API for MicroBT Whatsminer ASICs', # Give a short description about your library author = 'Satoshi Anonymoto', # Type in your name author_email = '', # Type in your E-Mail url = 'https://github.com/satoshi-anonymoto/whatsminer-api', # Provide either the link to your github or to your website - download_url = 'https://github.com/satoshi-anonymoto/whatsminer-api/archive/v_01.tar.gz', # I explain this later on + download_url = 'https://github.com/satoshi-anonymoto/whatsminer-api/archive/refs/tags/0.1.0-beta01.tar.gz', keywords = ['whatsminer', 'microbt', 'api'], # Keywords that define your package best - install_requires=[ # I get to this in a second + install_requires=[ 'pycryptodome', ], classifiers=[