-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (31 loc) · 933 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
38
import os
from setuptools import setup, find_packages
path = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(path, 'README.md')) as f:
long_description = f.read()
except Exception as e:
long_description = "customize okta cli"
setup(
name = "okta-cmd",
version = "0.1.1",
keywords = ("pip", "okta", "cli", "cmd", "steven"),
description = "okta cli",
long_description = long_description,
long_description_content_type='text/markdown',
python_requires=">=3.5.0",
license = "MIT Licence",
url = "https://github.com/stevenQiang/okta-cmd",
author = "steven",
author_email = "[email protected]",
packages = find_packages(),
include_package_data = True,
install_requires = ["requests", "click"],
platforms = "any",
scripts = [],
entry_points = {
'console_scripts': [
'okta-cmd=oktacmd:main_cli'
]
}
)