forked from yukinotenshi/pyupload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 651 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='PyUpload',
version='0.1.6',
packages=find_packages(),
author='yukinotenshi',
author_email='gabriel.bentara@gmail.com',
license='MIT',
url='https://github.com/yukinotenshi/pyupload',
install_requires=[
'requests',
'requests-toolbelt',
'click'
],
description='A simple CLI tool to upload file with direct link',
keywords='direct upload cli',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
entry_points={
'console_scripts': ['pyupload=pyupload.main:upload']
}
)