-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1.06 KB
/
setup.py
File metadata and controls
30 lines (27 loc) · 1.06 KB
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
Enables building standard Python vLab CLI distributions
"""
from setuptools import setup, find_packages
from vlab_cli import version
setup(name="vlab-cli",
author="Nicholas Willhite",
version=version.__version__,
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3 :: Only',
],
description="Command Line Interface for vLab",
long_description=open('README.rst').read(),
entry_points={'console_scripts' : 'vlab=vlab_cli.vlab:cli'},
install_requires=['click', 'pyjwt', 'requests', 'tabulate', 'cryptography',
'colorama', 'beautifulsoup4', 'click-completion'],
)