-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.48 KB
/
setup.py
File metadata and controls
55 lines (51 loc) · 1.48 KB
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
from setuptools import setup, find_packages
from banyan.core.version import get_version
VERSION = get_version()
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='pybanyan',
version=VERSION,
description='API library and command-line interface for Banyan Security',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Todd Radel',
author_email='todd@banyansecurity.io',
url='https://github.com/banyansecurity/pybanyan/',
license='apache',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'banyan': ['templates/*']},
include_package_data=True,
python_requires='~=3.7',
install_requires=[
'dnspython',
'marshmallow',
'marshmallow_dataclass',
'python-dateutil',
'cement~=3.0',
'jinja2',
'pyyaml',
'colorlog',
'semver',
'jwt',
'iso8601',
'tabulate',
'pyOpenSSL',
'requests',
'aenum',
'colorama',
'cryptography'
],
extras_require={
'aws': ['boto3', 'ec2_metadata'],
'azure_cloud': ['azure-identity', 'azure-mgmt-resource', 'azure-mgmt-compute', 'azure-mgmt-network'],
'gcp': ['google-api-python-client'],
'oracle_cloud': ['oci'],
'okta': ['okta'],
'azure_ad': ['azure-identity', 'msgraph-core']
},
entry_points={'console_scripts': [
"banyan=banyan.main:main"
]},
)