Skip to content

Commit d7fc8a2

Browse files
committed
chore: add .gitignore and MIT license
0 parents  commit d7fc8a2

2 files changed

Lines changed: 119 additions & 0 deletions

File tree

.gitignore

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# =============================================================================
2+
# Python
3+
# =============================================================================
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
*.so
8+
.Python
9+
build/
10+
develop-eggs/
11+
dist/
12+
downloads/
13+
eggs/
14+
.eggs/
15+
lib/
16+
lib64/
17+
parts/
18+
sdist/
19+
var/
20+
wheels/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
25+
# =============================================================================
26+
# Virtual Environments
27+
# =============================================================================
28+
.env
29+
.venv
30+
env/
31+
venv/
32+
ENV/
33+
env.bak/
34+
venv.bak/
35+
.python-version
36+
37+
# =============================================================================
38+
# IDEs and Editors
39+
# =============================================================================
40+
.idea/
41+
.vscode/
42+
*.swp
43+
*.swo
44+
*~
45+
.project
46+
.pydevproject
47+
.settings/
48+
*.sublime-workspace
49+
*.sublime-project
50+
51+
# =============================================================================
52+
# Testing and Coverage
53+
# =============================================================================
54+
.tox/
55+
.nox/
56+
.coverage
57+
.coverage.*
58+
htmlcov/
59+
.pytest_cache/
60+
.hypothesis/
61+
pytest_cache/
62+
nosetests.xml
63+
coverage.xml
64+
*.cover
65+
*.py,cover
66+
67+
# =============================================================================
68+
# Type Checking
69+
# =============================================================================
70+
.mypy_cache/
71+
.dmypy.json
72+
dmypy.json
73+
.pytype/
74+
75+
# =============================================================================
76+
# Documentation
77+
# =============================================================================
78+
docs/_build/
79+
site/
80+
81+
# =============================================================================
82+
# OS Generated
83+
# =============================================================================
84+
.DS_Store
85+
.DS_Store?
86+
._*
87+
.Spotlight-V100
88+
.Trashes
89+
ehthumbs.db
90+
Thumbs.db
91+
92+
# =============================================================================
93+
# Project Specific
94+
# =============================================================================
95+
*.log
96+
.env.local
97+
.env.*.local
98+
secrets.json

LICENSE

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) 2024 TrueEntropy Contributors
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.

0 commit comments

Comments
 (0)