File: setup.py

package info (click to toggle)
kamcli 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 812 kB
  • sloc: python: 6,194; sh: 61; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 431 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup

setup(
    name="kamcli",
    version="3.0.0",
    packages=["kamcli", "kamcli.commands"],
    include_package_data=True,
    install_requires=[
        "setuptools",
        "click",
        "prompt-toolkit",
        "pyaml",
        "pygments",
        "sqlalchemy",
        "tabulate",
        "wheel",
    ],
    entry_points="""
        [console_scripts]
        kamcli=kamcli.cli:cli
    """,
)