diff --git a/README.md b/README.md index 3a79adb..da7cbca 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -# Get my pastebin -

diff --git a/get-pastebin.py b/get_my_pastebin.py similarity index 100% rename from get-pastebin.py rename to get_my_pastebin.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..736104f --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup +setup( + name = 'get-my-pastebin', + py_modules=['get-my-pastebin'], + version = '1.0.9', + python_requires='>3.6', + description = 'Terminal application to find and copy your own Paste for Pastebin.', + author = 'Andros Fenollosa', + author_email = 'andros@fenollosa.email', + url = 'https://github.com/tanrax/get-my-pastebin', + keywords = ['pastebin', 'terminal', 'console', 'copy', 'search', 'notes'], + classifiers=( + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ), + install_requires=[ + 'Click>=7.0', + 'pick>=0.6.4' + ], + entry_points=''' + [console_scripts] + getmypastebin=get_my_pastebin:main + ''' +)