-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (29 loc) · 852 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(
name="transfersh-cli",
py_modules=["transfersh"],
version="1.2.1",
python_requires=">3.6",
description="Client to upload files to the transfer.sh service",
author="Andros Fenollosa",
author_email="andros@fenollosa.email",
url="https://github.com/tanrax/transfersh-cli",
keywords=["transfer", "upload", "client"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"click==8.1.7",
"progressbar2==4.2.0",
"pyperclip==1.8.2",
"requests==2.31.0",
"requests-toolbelt==1.0.0",
"tqdm==4.66.1",
],
entry_points="""
[console_scripts]
transfersh=transfersh:transfersh_cli
""",
)