Skip to content

Commit 320dacb

Browse files
committed
.
1 parent c3dc877 commit 320dacb

File tree

5 files changed

+282
-282
lines changed

5 files changed

+282
-282
lines changed

.gitignore

+138-138
Original file line numberDiff line numberDiff line change
@@ -1,139 +1,139 @@
1-
#########################################
2-
# Editor temporary/working/backup files #
3-
.#*
4-
*\#*\#
5-
[#]*#
6-
*~
7-
*$
8-
*.bak
9-
*flymake*
10-
*.iml
11-
*.kdev4
12-
*.log
13-
*.swp
14-
*.pdb
15-
*.zip
16-
.project
17-
.pydevproject
18-
.settings
19-
.idea
20-
.vagrant
21-
.noseids
22-
.ipynb_checkpoints
23-
.tags
24-
.cache/
25-
.vscode/
26-
27-
# Compiled source #
28-
###################
29-
*.a
30-
*.com
31-
*.class
32-
*.dll
33-
*.exe
34-
*.pxi
35-
*.o
36-
*.py[ocd]
37-
*.so
38-
.build_cache_dir
39-
.mesonpy-native-file.ini
40-
MANIFEST
41-
compile_commands.json
42-
debug
43-
.debug
44-
45-
# Python files #
46-
################
47-
# setup.py working directory
48-
build
49-
# sphinx build directory
50-
doc/_build
51-
# setup.py dist directory
52-
dist
53-
# Egg metadata
54-
*.egg-info
55-
.eggs
56-
.pypirc
57-
# type checkers
58-
pandas/py.typed
59-
60-
# pyenv
61-
.python-version
62-
63-
# tox testing tool
64-
.tox
65-
# rope
66-
.ropeproject
67-
# wheel files
68-
*.whl
69-
**/wheelhouse/*
70-
pip-wheel-metadata
71-
# coverage
72-
.coverage
73-
coverage.xml
74-
coverage_html_report
75-
.mypy_cache
76-
*.pytest_cache
77-
.ruff_cache
78-
# hypothesis test database
79-
.hypothesis/
80-
__pycache__
81-
# pytest-monkeytype
82-
monkeytype.sqlite3
83-
# meson editable install folder
84-
.mesonpy
85-
86-
87-
# OS generated files #
88-
######################
89-
.directory
90-
.gdb_history
91-
.DS_Store
92-
ehthumbs.db
93-
Icon?
94-
Thumbs.db
95-
96-
# Data files #
97-
##############
98-
*.dta
99-
*.xpt
100-
*.h5
101-
pandas/io/*.dat
102-
pandas/io/*.json
103-
scikits
104-
105-
# Generated Sources #
106-
#####################
107-
!skts.c
108-
*.c
109-
*.cpp
110-
!pandas/_libs/src/**/*.c
111-
!pandas/_libs/src/**/*.h
112-
!pandas/_libs/include/**/*.h
113-
114-
# Unit / Performance Testing #
115-
##############################
116-
asv_bench/env/
117-
asv_bench/html/
118-
asv_bench/results/
119-
asv_bench/pandas/
120-
test-data.xml
121-
122-
# Documentation generated files #
123-
#################################
124-
doc/source/generated
125-
doc/source/user_guide/styled.xlsx
126-
doc/source/reference/api
127-
doc/source/_static/*.html
128-
doc/source/vbench
129-
doc/source/vbench.rst
130-
doc/source/index.rst
131-
doc/build/html/index.html
132-
# Windows specific leftover:
133-
doc/tmp.sv
134-
env/
135-
doc/source/savefig/
136-
137-
# Interactive terminal generated files #
138-
########################################
1+
#########################################
2+
# Editor temporary/working/backup files #
3+
.#*
4+
*\#*\#
5+
[#]*#
6+
*~
7+
*$
8+
*.bak
9+
*flymake*
10+
*.iml
11+
*.kdev4
12+
*.log
13+
*.swp
14+
*.pdb
15+
*.zip
16+
.project
17+
.pydevproject
18+
.settings
19+
.idea
20+
.vagrant
21+
.noseids
22+
.ipynb_checkpoints
23+
.tags
24+
.cache/
25+
.vscode/
26+
27+
# Compiled source #
28+
###################
29+
*.a
30+
*.com
31+
*.class
32+
*.dll
33+
*.exe
34+
*.pxi
35+
*.o
36+
*.py[ocd]
37+
*.so
38+
.build_cache_dir
39+
.mesonpy-native-file.ini
40+
MANIFEST
41+
compile_commands.json
42+
debug
43+
.debug
44+
45+
# Python files #
46+
################
47+
# setup.py working directory
48+
build
49+
# sphinx build directory
50+
doc/_build
51+
# setup.py dist directory
52+
dist
53+
# Egg metadata
54+
*.egg-info
55+
.eggs
56+
.pypirc
57+
# type checkers
58+
pandas/py.typed
59+
60+
# pyenv
61+
.python-version
62+
63+
# tox testing tool
64+
.tox
65+
# rope
66+
.ropeproject
67+
# wheel files
68+
*.whl
69+
**/wheelhouse/*
70+
pip-wheel-metadata
71+
# coverage
72+
.coverage
73+
coverage.xml
74+
coverage_html_report
75+
.mypy_cache
76+
*.pytest_cache
77+
.ruff_cache
78+
# hypothesis test database
79+
.hypothesis/
80+
__pycache__
81+
# pytest-monkeytype
82+
monkeytype.sqlite3
83+
# meson editable install folder
84+
.mesonpy
85+
86+
87+
# OS generated files #
88+
######################
89+
.directory
90+
.gdb_history
91+
.DS_Store
92+
ehthumbs.db
93+
Icon?
94+
Thumbs.db
95+
96+
# Data files #
97+
##############
98+
*.dta
99+
*.xpt
100+
*.h5
101+
pandas/io/*.dat
102+
pandas/io/*.json
103+
scikits
104+
105+
# Generated Sources #
106+
#####################
107+
!skts.c
108+
*.c
109+
*.cpp
110+
!pandas/_libs/src/**/*.c
111+
!pandas/_libs/src/**/*.h
112+
!pandas/_libs/include/**/*.h
113+
114+
# Unit / Performance Testing #
115+
##############################
116+
asv_bench/env/
117+
asv_bench/html/
118+
asv_bench/results/
119+
asv_bench/pandas/
120+
test-data.xml
121+
122+
# Documentation generated files #
123+
#################################
124+
doc/source/generated
125+
doc/source/user_guide/styled.xlsx
126+
doc/source/reference/api
127+
doc/source/_static/*.html
128+
doc/source/vbench
129+
doc/source/vbench.rst
130+
doc/source/index.rst
131+
doc/build/html/index.html
132+
# Windows specific leftover:
133+
doc/tmp.sv
134+
env/
135+
doc/source/savefig/
136+
137+
# Interactive terminal generated files #
138+
########################################
139139
.jupyterlite.doit.db

LICENSE

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2024 Unstruk Data Inc.
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.
1+
MIT License
2+
3+
Copyright (c) 2024 Unstruk Data Inc.
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)