-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
66 lines (60 loc) · 2.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# pylint: skip-file
import os.path
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
PACKAGE_NAME = "pyaim"
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
VERSION_FILE = os.path.join(CURRENT_DIR, PACKAGE_NAME, "version.py")
VERSION_DATA = {}
with open(VERSION_FILE, "r") as version_fp:
exec(version_fp.read(), VERSION_DATA)
setuptools.setup(
name="pyaim",
version=VERSION_DATA['__version__'],
author="Joe Garcia",
author_email="joe.garcia@cyberark.com",
description="CyberArk Application Access Manager Client Library for Python 3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/infamousjoeg/pyaim",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Office/Business",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
keywords=[
"cyberark",
"security",
"vault",
"aim",
"aam",
"privileged access",
"identity",
"pam",
"pim",
"pas",
"ccp",
"cp",
"credential provider",
"identity security"
],
project_urls={
'Bug Reports': 'https://github.com/infamousjoeg/pyaim/issues/new?assignees=&labels=&template=bug_report.md&title=',
'Feature Requests': 'https://github.com/infamousjoeg/pyaim/issues/new?assignees=&labels=&template=feature_request.md&title=',
'Source': 'https://github.com/infamousjoeg/pyaim'
}
)