This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
50 lines (46 loc) · 1.6 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
"""Setuptools package definition"""
from setuptools import setup
from setuptools import find_packages
from setuptools.command.install import install
import codecs
import os
import sys
__version__ = None
version_file = "pyark/version.py"
with codecs.open(version_file, encoding="UTF-8") as f:
code = compile(f.read(), version_file, 'exec')
exec(code)
with codecs.open('README.rst', 'r', encoding="UTF-8") as f:
README_TEXT = f.read()
setup(
name = "pyark",
version = __version__,
packages = find_packages(),
entry_points = {
'console_scripts': [
"pyark = pyark:main",
]
},
install_requires = [
"requests",
],
author = "Adfinis SyGroup AG",
author_email = "[email protected]",
description = ("Pyark is a small python-based CLI tool, which allows you to "
"interact with the CyberArk Enterprise Password Vault API."),
long_description = README_TEXT,
keywords = "CyberArk, Password Vault, API, CLI",
url = "https://github.com/adfinis-sygroup/pyark",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
)