This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
95 lines (81 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env python3
"""
Setup.py
This module is used for installation of this code directly on the machine
"""
import os.path
from setuptools import setup, find_packages
PACKAGE_NAME = "conjur"
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)
long_description=""
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
setup(
name="conjur",
version=VERSION_DATA['__version__'],
python_requires='>=3.11',
packages=find_packages(exclude=("test")),
zip_safe=True,
scripts=['pkg_bin/conjur'],
entry_points={
'console_scripts': ['conjur=conjur:Cli.launch'],
'setuptools.installation': [
'eggsecutable = conjur:Cli.launch',
]
},
# Keep this in sync with requirements.txt
install_requires=[
"nose2>=0.9.2",
"nose2[coverage_plugin]>=0.6.5",
"pylint>=2.6.0",
"cryptography~=42.0.5",
"keyring>=23.0.0",
"pyopenssl>=24.0.0",
"PyInstaller>=4.0",
"PyYAML>=5.3.1",
"aiohttp>=3.9.3",
"asynctest>=0.13.0",
"setuptools>=57.0.0",
"twine>=3.2.0",
"urllib3>=1.25.9"
],
package_data={
'': ['*.md'],
},
author="CyberArk Software, Inc",
author_email="CyberArk Maintainers <[email protected]>",
description="APIs for interacting with the Conjur v5 appliance",
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
url="https://github.com/cyberark/cyberark-conjur-cli",
keywords=[
"conjur",
"cyberark",
"microservices"
"privileged access",
"security",
"vault",
],
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"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 :: System :: Systems Administration :: Authentication/Directory",
"Topic :: Utilities",
],
)