Skip to content

Commit 8296661

Browse files
committed
Initial commit
0 parents  commit 8296661

23 files changed

+1676
-0
lines changed

.gitignore

+193
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
# Random stuff the project can generate
2+
*.json
3+
*.csv
4+
5+
# Vim-related
6+
*.swp
7+
*.swo
8+
*.swn
9+
*.un~
10+
Session.vim
11+
*.netrwhist
12+
tags
13+
.vim/
14+
.vimrc
15+
.viminfo
16+
.viminfo*
17+
18+
# Emacs-related
19+
*~
20+
\#*\#
21+
.\#*
22+
.emacs
23+
.emacs.d/
24+
.elc
25+
26+
# macOS-related
27+
.DS_Store
28+
29+
# Shamelessly taken from here because I'm lazy:
30+
# https://github.com/github/gitignore/blob/main/Python.gitignore
31+
32+
# Byte-compiled / optimized / DLL files
33+
__pycache__/
34+
*.py[cod]
35+
*$py.class
36+
37+
# C extensions
38+
*.so
39+
40+
# Distribution / packaging
41+
.Python
42+
build/
43+
develop-eggs/
44+
dist/
45+
downloads/
46+
eggs/
47+
.eggs/
48+
lib/
49+
lib64/
50+
parts/
51+
sdist/
52+
var/
53+
wheels/
54+
share/python-wheels/
55+
*.egg-info/
56+
.installed.cfg
57+
*.egg
58+
MANIFEST
59+
60+
# PyInstaller
61+
# Usually these files are written by a python script from a template
62+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
63+
*.manifest
64+
*.spec
65+
66+
# Installer logs
67+
pip-log.txt
68+
pip-delete-this-directory.txt
69+
70+
# Unit test / coverage reports
71+
htmlcov/
72+
.tox/
73+
.nox/
74+
.coverage
75+
.coverage.*
76+
.cache
77+
nosetests.xml
78+
coverage.xml
79+
*.cover
80+
*.py,cover
81+
.hypothesis/
82+
.pytest_cache/
83+
cover/
84+
85+
# Translations
86+
*.mo
87+
*.pot
88+
89+
# Django stuff:
90+
*.log
91+
local_settings.py
92+
db.sqlite3
93+
db.sqlite3-journal
94+
95+
# Flask stuff:
96+
instance/
97+
.webassets-cache
98+
99+
# Scrapy stuff:
100+
.scrapy
101+
102+
# Sphinx documentation
103+
docs/_build/
104+
105+
# PyBuilder
106+
.pybuilder/
107+
target/
108+
109+
# Jupyter Notebook
110+
.ipynb_checkpoints
111+
112+
# IPython
113+
profile_default/
114+
ipython_config.py
115+
116+
# pyenv
117+
# For a library or package, you might want to ignore these files since the code is
118+
# intended to run in multiple environments; otherwise, check them in:
119+
# .python-version
120+
121+
# pipenv
122+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
123+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
124+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
125+
# install all needed dependencies.
126+
#Pipfile.lock
127+
128+
# poetry
129+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
130+
# This is especially recommended for binary packages to ensure reproducibility, and is more
131+
# commonly ignored for libraries.
132+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
133+
#poetry.lock
134+
135+
# pdm
136+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
137+
#pdm.lock
138+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
139+
# in version control.
140+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
141+
.pdm.toml
142+
.pdm-python
143+
.pdm-build/
144+
145+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
146+
__pypackages__/
147+
148+
# Celery stuff
149+
celerybeat-schedule
150+
celerybeat.pid
151+
152+
# SageMath parsed files
153+
*.sage.py
154+
155+
# Environments
156+
.env
157+
.venv
158+
env/
159+
venv/
160+
ENV/
161+
env.bak/
162+
venv.bak/
163+
164+
# Spyder project settings
165+
.spyderproject
166+
.spyproject
167+
168+
# Rope project settings
169+
.ropeproject
170+
171+
# mkdocs documentation
172+
/site
173+
174+
# mypy
175+
.mypy_cache/
176+
.dmypy.json
177+
dmypy.json
178+
179+
# Pyre type checker
180+
.pyre/
181+
182+
# pytype static type analyzer
183+
.pytype/
184+
185+
# Cython debug symbols
186+
cython_debug/
187+
188+
# PyCharm
189+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
190+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
191+
# and can be added to the global gitignore or merged into this file. For a more nuclear
192+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
193+
#.idea/

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Tom Ice
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.
22+

MANIFEST.in

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include LICENSE
2+
include README.md
3+
include TODO.md
4+
recursive-include git_py_stats *
5+
recursive-include tests *
6+
global-exclude *.pyc __pycache__/
7+

0 commit comments

Comments
 (0)