forked from banyansecurity/pybanyan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.11 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1.11 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
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.4',
'jinja2',
'pyyaml',
'colorlog',
'semver',
'jwt',
'iso8601',
'tabulate',
'pyOpenSSL',
'requests',
'aenum'
],
entry_points={'console_scripts': [
"banyan=banyan.main:main"
]},
)