Skip to content

Commit f209cc8

Browse files
committed
Initial commit
0 parents  commit f209cc8

File tree

5 files changed

+53
-0
lines changed

5 files changed

+53
-0
lines changed

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
*.py[cod]
2+
3+
# C extensions
4+
*.so
5+
6+
# Packages
7+
*.egg
8+
*.egg-info
9+
dist
10+
build
11+
eggs
12+
parts
13+
bin
14+
var
15+
sdist
16+
develop-eggs
17+
.installed.cfg
18+
lib
19+
lib64
20+
__pycache__
21+
22+
# Installer logs
23+
pip-log.txt
24+
25+
# Unit test / coverage reports
26+
.coverage
27+
.tox
28+
nosetests.xml
29+
30+
#Misc
31+
.DS_Store
32+
.eggs/
33+
.env/
34+
.idea/

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CHANGELOG
2+
=========

CONTRIBUTING.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Contributing
2+
3+
We love pull requests. Here's a quick guide.
4+
5+
Fork, then clone the repo:
6+
7+
git clone git@github.com:DataDog/datadog-lambda-layer-python.git
8+
9+
Make your change. Add tests for your change. Make the tests pass again.
10+
11+
Push to your fork and [submit a pull request][pr].
12+
13+
[pr]: https://github.com/your-username/datadog-lambda-layer-python/compare/DataDog:master...master
14+
15+
At this point you're waiting on us. We may suggest some changes or improvements or alternatives.
16+

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# datadog-lambda-layer-python

datadog_lambda/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)