Upload pip version
This commit is contained in:
parent
27423d60d5
commit
fcdc63ab57
@ -1,5 +1,3 @@
|
|||||||
# Get my pastebin
|
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img src="https://min.gitcdn.link/repo/tanrax/get-my-pastebin/master/logo.png">
|
<img src="https://min.gitcdn.link/repo/tanrax/get-my-pastebin/master/logo.png">
|
||||||
</p>
|
</p>
|
||||||
|
25
setup.py
Normal file
25
setup.py
Normal 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
|
||||||
|
'''
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user