-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
46 lines (39 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def find_scripts():
scripts = []
exclude = ['setup.py']
for file in os.scandir('.'):
if file.name.endswith('.py') and file.is_file() and (file.name not in exclude):
scripts.append(file.name)
return scripts
setup(
name='surveyor',
author='Keith McCammon',
author_email='[email protected]',
url='https://github.com/redcanaryco/surveyor',
license='MIT',
packages=find_packages(),
scripts=find_scripts(),
description='Extracts summarized process data from EDR platforms',
version='2.5.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'cbapi==2.0.0', 'click', 'requests', 'tqdm', 'carbon-black-cloud-sdk'
],
extras_require={
"sigma": [
"pysigma>=0.9.5"
]
}
)