forked from sublime-security/sublime-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·62 lines (56 loc) · 1.71 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
#!/usr/bin/env python
"""Sublime API client package."""
import os
from setuptools import find_packages, setup
def read(fname):
"""Read file and return its contents."""
with open(os.path.join(os.path.dirname(__file__), fname)) as input_file:
return input_file.read()
INSTALL_REQUIRES = [
"Click>=7.0",
"ansimarkup",
"cachetools",
"click-default-group",
"click-repl",
"compoundfiles",
"compressed-rtf",
"gron",
"halo",
"jinja2",
"more-itertools",
"msg_parser",
"olefile",
"pyyaml",
"requests",
"six",
"structlog",
"websockets"
]
setup(
name="sublime-cli",
version="0.0.32",
description="Abstraction to interact with the Sublime API.",
url="https://sublimesecurity.com/",
author="Sublime Security",
author_email="hello@sublimesecurity.com",
license="MIT",
package_dir={"": "src"},
packages=find_packages(where="src"),
package_data={"sublime.cli": ["templates/*.j2", "subcommand_groups/*.py"]},
install_requires=INSTALL_REQUIRES,
long_description=read("README.md") + "\n\n",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
],
entry_points={"console_scripts": ["sublime = sublime.cli:main"]},
zip_safe=False,
keywords=["security", "phishing", "analysts", "soc",
"threat intelligence", "security-automation", "email security"],
download_url="https://github.com/sublime-security/sublime-cli",
)