-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1019 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
31
32
33
34
35
36
37
from setuptools import find_packages, setup
from kudu import __author__, __email__, __version__
setup(
name="kudu",
author=__author__,
author_email=__email__,
version=__version__,
description="A deployment command line program in Python.",
url="https://github.com/torfeld6/kudu",
license="BSD",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="cli",
packages=find_packages(),
install_requires=[
"requests",
"PyYAML",
"watchdog",
"click",
],
entry_points={
"console_scripts": [
"kudu = kudu.__main__:cli",
],
},
)