get-my-pastebin/setup.py
2019-01-14 17:08:30 +01:00

27 lines
784 B
Python

from setuptools import setup
setup(
name = 'get-my-pastebin',
py_modules=['get_my_pastebin'],
version = '1.0.12',
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',
'pyperclip>=1.7.0'
],
entry_points='''
[console_scripts]
getmypastebin=get_my_pastebin:main
'''
)