forked from yukinotenshi/pyupload
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 930 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
from setuptools import setup, find_packages
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
setup(
name="pylitter",
version="1.1.1",
packages=find_packages(),
author="moisentinel, yukinotenshi",
author_email="[email protected], [email protected]",
license="MIT",
url="https://github.com/moiSentineL/litter",
install_requires=["requests", "requests-toolbelt", "click"],
description="CLI tool to upload file to litterbox/catbox",
keywords="direct upload cli",
classifiers=CLASSIFIERS,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": ["throw=litter.main:cli", "litter=litter.main:cli"]
},
)