get-my-pastebin/setup.py

27 lines
784 B
Python
Raw Normal View History

2019-01-13 16:06:56 +01:00
from setuptools import setup
setup(
name = 'get-my-pastebin',
2019-01-13 16:19:36 +01:00
py_modules=['get_my_pastebin'],
2019-01-14 17:08:30 +01:00
version = '1.0.12',
2019-01-13 16:06:56 +01:00
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',
2019-01-14 08:46:04 +01:00
'pick>=0.6.4',
'pyperclip>=1.7.0'
2019-01-13 16:06:56 +01:00
],
entry_points='''
[console_scripts]
getmypastebin=get_my_pastebin:main
'''
)