Skip to content

Commit 185ebf3

Browse files
committed
initial structure
1 parent 7b05d5b commit 185ebf3

File tree

10 files changed

+66
-0
lines changed

10 files changed

+66
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
8+
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.

CONTRIBUTING.md

Whitespace-only changes.

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Code42 Software
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Whitespace-only changes.

c42seceventcli/__init__.py

Whitespace-only changes.

c42seceventcli/aed/__init__.py

Whitespace-only changes.

c42seceventcli/common/__init__.py

Whitespace-only changes.

c42seceventcli/fed/__init__.py

Whitespace-only changes.

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tool.black]
2+
line-length = 100
3+
include = '\.pyi?$'
4+
exclude = '''
5+
/(
6+
\.eggs
7+
| \.git
8+
| \.hg
9+
| \.mypy_cache
10+
| \.tox
11+
| \.venv
12+
| _build
13+
| buck-out
14+
| build
15+
| dist
16+
)/
17+
'''

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from setuptools import find_packages, setup
2+
3+
setup(
4+
name="c42seceventcli",
5+
version="0.1.0",
6+
description="Tools for integrating Code42 Exfiltration Detection features with SIEMs",
7+
packages=find_packages(include=["c42seceventcli", "c42seceventcli.*"]),
8+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
9+
install_requires=["c42secevents"],
10+
license="MIT",
11+
include_package_data=True,
12+
zip_safe=False,
13+
extras_require={
14+
"dev": [
15+
"pre-commit==1.18.3",
16+
"pytest==4.6.5",
17+
"pytest-mock==1.10.4",
18+
]
19+
},
20+
)

0 commit comments

Comments
 (0)