diff options
author | mattlyon93 <matthewlyon18@gmail.com> | 2019-12-03 16:32:53 +1100 |
---|---|---|
committer | mattlyon93 <matthewlyon18@gmail.com> | 2019-12-03 16:32:53 +1100 |
commit | dab7738fa8dfcb841494c00f8092257fb7542853 (patch) | |
tree | 1b7771e75992540241d4e50c75125e72fd23a546 | |
parent | ac3e7e6773b906d8ec299c881f400b18ba7728a6 (diff) | |
download | tpb-lite-dab7738fa8dfcb841494c00f8092257fb7542853.tar.gz tpb-lite-dab7738fa8dfcb841494c00f8092257fb7542853.tar.bz2 tpb-lite-dab7738fa8dfcb841494c00f8092257fb7542853.zip |
added setup.py
-rw-r--r-- | setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
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 |