-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (28 loc) · 920 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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read()
setup(
name = 'qwota',
version = '0.0.2',
author = 'Henning Seljenes',
author_email = 'henning.seljenes@gmail.com',
license = 'MIT',
description = 'Tool for checking OpenShift AppliedClusterQuotaResource',
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/hseljenes/qwota',
py_modules = ['qwota_cli'],
packages = find_packages(),
install_requires = [requirements],
python_requires='>=3',
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
],
entry_points = '''
[console_scripts]
qwota=qwota_cli:cli
'''
)