diff options
author | Matt Lyon <matthewlyon18@gmail.com> | 2019-12-17 22:55:38 +0000 |
---|---|---|
committer | Matt Lyon <matthewlyon18@gmail.com> | 2019-12-17 22:55:38 +0000 |
commit | 3de8fe3907d3169bca75fc5a9d90a6dc8afc84e3 (patch) | |
tree | d89c27e07c638c4f77252e3ea2c23e9fb39696ba /setup.py | |
parent | c7ec8249b8825a5d9226b16f6aa0c4e39d3d25cc (diff) | |
download | tpb-lite-3de8fe3907d3169bca75fc5a9d90a6dc8afc84e3.tar.gz tpb-lite-3de8fe3907d3169bca75fc5a9d90a6dc8afc84e3.tar.bz2 tpb-lite-3de8fe3907d3169bca75fc5a9d90a6dc8afc84e3.zip |
added download_url to setup
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,12 +3,13 @@ from setuptools import setup, find_packages setup(name = 'tpblite', - version = '0.2.0', + version = '0.2.1', description = 'The Unofficial Pirate Bay Lightweight Python API', author = 'Matt Lyon', author_email = 'matthewlyon18@gmail.com', python_requires = '>=3.6', url = 'https://github.com/mattlyon93/tpb-lite', + download_url = 'https://github.com/mattlyon93/tpb-lite/archive/v0.3.tar.gz', license = 'MIT License', packages = ['tpblite', 'tpblite/models'], install_requires = [ |