aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Lyon <matthewlyon18@gmail.com>2019-12-19 10:20:10 +0000
committerMatt Lyon <matthewlyon18@gmail.com>2019-12-19 10:20:10 +0000
commit26e7bacfcc1a86b703e92373b37ea7debdde8b34 (patch)
tree6748f08dd86372675ddb2b1ea8be7fb3ea6b8932
parentce5737ace77cfcccfc447bd0415f7230091cc402 (diff)
downloadtpb-lite-26e7bacfcc1a86b703e92373b37ea7debdde8b34.tar.gz
tpb-lite-26e7bacfcc1a86b703e92373b37ea7debdde8b34.tar.bz2
tpb-lite-26e7bacfcc1a86b703e92373b37ea7debdde8b34.zip
minor fix to description on setupv.0.2.3
-rw-r--r--setup.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index b46768d..9dce75f 100644
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,24 @@
#!/usr/bin/env python3
-from setuptools import setup, find_packages
+from setuptools import setup
+from os import path
+
+this_dir = path.abspath(path.dirname(__file__))
+with open(path.join(this_dir, 'README.md'), encoding='utf-8') as f:
+ long_description = f.read()
+
+version = '0.2.3'
setup(name = 'tpblite',
- version = '0.2.2',
+ version = version,
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.2.2.tar.gz',
+ download_url = 'https://github.com/mattlyon93/tpb-lite/archive/v{}.tar.gz'.format(version),
+ long_description = long_description,
+ long_description_content_type='text/markdown',
license = 'MIT License',
packages = ['tpblite', 'tpblite/models'],
install_requires = [