-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
59 lines (52 loc) · 1.67 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
# Copyright (c) 2022, salesforce.com, inc.
# All rights reserved.
# Licensed under the BSD 3-Clause license.
# For full license text, see the LICENSE file in the repo root
# or https://opensource.org/licenses/BSD-3-Clause
import setuptools
import os
import re
HERE = os.path.abspath(os.path.dirname(__file__))
VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
TESTS_REQUIRE = []
def get_version():
init = open(
os.path.join(
HERE,
"heroku_guardian",
"bin",
"version.py"
)
).read()
return VERSION_RE.search(init).group(1)
def get_description():
return open(
os.path.join(os.path.abspath(HERE), "README.md"), encoding="utf-8"
).read()
setuptools.setup(
name="heroku-guardian",
include_package_data=True,
version=get_version(),
author="Ashish Patel",
author_email="[email protected]",
description="Simple and easy to use security checks for the Heroku platform.",
long_description=get_description(),
long_description_content_type="text/markdown",
url="https://github.com/heroku/heroku_guardian",
packages=setuptools.find_packages(exclude=['test*', 'tmp*']),
tests_require=TESTS_REQUIRE,
install_requires=[
'click',
'colorama',
'requests'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": "heroku-guardian=heroku_guardian.bin.cli:main"},
zip_safe=True,
keywords='heroku roles policy policies privileges security',
python_requires='>=3.6',
)