Upload pip version

This commit is contained in:
Andros Fenollosa 2019-01-13 16:06:56 +01:00
parent 27423d60d5
commit fcdc63ab57
3 changed files with 25 additions and 2 deletions

View File

@ -1,5 +1,3 @@
# Get my pastebin
<p align="center">
<img src="https://min.gitcdn.link/repo/tanrax/get-my-pastebin/master/logo.png">
</p>

25
setup.py Normal file
View File

@ -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
'''
)