From dab7738fa8dfcb841494c00f8092257fb7542853 Mon Sep 17 00:00:00 2001 From: mattlyon93 Date: Tue, 3 Dec 2019 16:32:53 +1100 Subject: added setup.py --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4df49d6 --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +from setuptools import setup, find_packages + +setup(name='tpblite', + version='0.1.0', + description='The Unofficial Pirate Bay Lightweight Python API', + author='Matt Lyon', + author_email='matthewlyon18@gmail.com', + python_requires='>=3.6', + license='MIT License', + packages=['tpblite', 'tpblite/models'], + install_requires=[ + 'beautifulsoup4', + 'purl', + ], + classifiers=[ + 'Programming Language :: Python', + 'Operating System :: Unix', + 'Operating System :: MacOS' + ], + ) \ No newline at end of file -- cgit v1.2.3