-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (28 loc) · 970 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
from setuptools import setup
setup(
name="kutt",
version="1.5.2",
description="API wrapper and CLI for kutt.it",
author="Amirali Esfandiari",
author_email="[email protected]",
url="http://github.com/amirali/kutt",
py_modules=["kutt"],
install_requires=["fire", "requests", "toml"],
packages=["kutt"],
package_dir={"kutt": "kutt"},
python_requires=">=3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points="""
[console_scripts]
kutt=kutt.cli:main
""",
)