Added a setup.py for easy install and execution of script.
This commit is contained in:
31
setup.py
Normal file
31
setup.py
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
import torrentSearch
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='torrentSearch',
|
||||||
|
version=torrentSearch.__version__,
|
||||||
|
packages=find_packages(),
|
||||||
|
author='KevinMidboe',
|
||||||
|
description='Search For Torrents',
|
||||||
|
long_description="README on github : https://github.com/KevinMidboe/torrent_search",
|
||||||
|
install_requires=[
|
||||||
|
'docopt',
|
||||||
|
'beautifulsoup4',
|
||||||
|
'termcolor',
|
||||||
|
],
|
||||||
|
url='https://github.com/KevinMidboe/torrent_search',
|
||||||
|
classifiers=[
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
],
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': [
|
||||||
|
'search = torrentSearch.search:main',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user