Skip to content

Commit b1f0765

Browse files
committed
init commit
0 parents  commit b1f0765

12 files changed

+937
-0
lines changed

Diff for: .gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# JetBrains PyCharm IDE
2+
.idea/
3+
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# macOS dir files
13+
.DS_Store
14+
15+
# Distribution / packaging
16+
.Python
17+
env/
18+
build/
19+
develop-eggs/
20+
dist/
21+
downloads/
22+
eggs/
23+
.eggs/
24+
lib/
25+
lib64/
26+
parts/
27+
sdist/
28+
var/
29+
wheels/
30+
*.egg-info/
31+
.installed.cfg
32+
*.egg
33+
34+
# Checkpoints
35+
checkpoints
36+
37+
# PyInstaller
38+
# Usually these files are written by a python script from a template
39+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
40+
*.manifest
41+
*.spec
42+
43+
# Installer logs
44+
pip-log.txt
45+
pip-delete-this-directory.txt
46+
47+
# Unit test / coverage reports
48+
htmlcov/
49+
.tox/
50+
.coverage
51+
.coverage.*
52+
.cache
53+
nosetests.xml
54+
coverage.xml
55+
*.cover
56+
.hypothesis/
57+
58+
# Translations
59+
*.mo

Diff for: CODE_OF_CONDUCT.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Code of Conduct
2+
3+
Facebook has adopted a Code of Conduct that we expect project participants to adhere to.
4+
Please read the [full text](https://code.fb.com/codeofconduct/)
5+
so that you can understand what actions will and will not be tolerated.

Diff for: CONTRIBUTING.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Contributing to this repo
2+
3+
## Pull Requests
4+
5+
In order to accept your pull request, we need you to submit a CLA. You only need
6+
to do this once to work on any of Facebook's open source projects.
7+
8+
Complete your CLA here: <https://code.facebook.com/cla>
9+
10+
## Issues
11+
We use GitHub issues to track public bugs. Please ensure your description is
12+
clear and has sufficient instructions to be able to reproduce the issue.
13+
14+
## License
15+
By contributing to this repo, you agree that your contributions will be licensed
16+
under the LICENSE file in the root directory of this source tree.

0 commit comments

Comments
 (0)